Inventory movements history

Topic summary

Obtener el historial de movimientos de inventario de productos vía APIs Admin (REST/GraphQL). Se observa que el panel web de Shopify muestra esa información y parece consultarla mediante una operación GraphQL interna (endpoint “/admin/internal/web/graphql/core?operation=InventoryHistory”), pero no se encuentran docs públicas para replicar esa petición desde una app.

Puntos clave:

  • Se intenta acceder a “inventory movements”/historial de inventario desde REST y GraphQL sin éxito.
  • Se pregunta si es posible reutilizar la request GraphQL interna usada por el Admin.
  • Se menciona que en otras respuestas se sugiere usar webhooks para registrar cambios, pero esa alternativa no es viable para el caso.

Estado: pregunta abierta; no hay resolución ni método oficial identificado en los mensajes.

Summarized with AI on February 26. AI used: gpt-5.2.

Hi!

I’m trying to get inventory movements from products using the Admin APIs but I can’t find the docs related. I know I can get this data directly from the web:

I’m using REST and GraphQL but I can’t get this data in any way. I was checking the web and I realize that It uses GraphQL to get this movements. Are there a way to reuse this kind of request for the app that I’m developing?

https://xxxxxx.myshopify.com/admin/internal/web/graphql/core?operation=InventoryHistory

Thanks for your help

PD: I found related questions in the community, and people said that a solution could be use webhooks, but due to the app that I’m developing and the clients, this solution is not viable.