Inventory items

Inventory items with quantities across locations.

22 fields — 12 dimensions, 10 metrics. Date clauses (SINCE, UNTIL, DURING) use createdAt.

The live, authoritative list is always GET /v1/datasets — this page is regenerated from the same catalog, but the endpoint reflects exactly what is deployed.

Query it

FROM inventory_items
  SHOW variant_price
  GROUP BY sku
  SINCE -30d

See Querying with SoloQL for the language.

This dataset is queryable through SoloQL; it has no record-retrieval endpoint.

Fields

FieldTypeRoleDescription
skustringdimensionInventory item SKU.
product_variant_idstringdimensionShopify's id for the variant this inventory item belongs to.
variant_pricemoneymetricThe variant's current selling price.
barcodestringdimensionInventory item barcode.
product_titlestringdimensionTitle of the product this item belongs to.
product_typestringdimensionType of the product this item belongs to.
variant_titlestringdimensionTitle of the variant this item belongs to.
is_trackedbooleandimensionLabel specifying whether the inventory item's inventory adjustments are tracked.
requires_shippingbooleandimensionWhether the item requires shipping.
item_countnumbermetricNumber of inventory items (SKUs) in the group (document count — value_count on createdAt). Sums across stores.
costmoneymetricCost per item.
available_quantitynumbermetricUnits available for sale across locations.
on_hand_quantitynumbermetricUnits physically on hand across locations.
committed_quantitynumbermetricUnits committed to orders across locations.
incoming_quantitynumbermetricUnits incoming across locations.
unavailable_quantitynumbermetricUnits unavailable across locations.
reserved_quantitynumbermetricUnits reserved across locations.
location_namestringdimensionLocation holding the inventory.
location_available_quantitynumbermetricUnits available at a specific location.
storestringdimensionThe shop the record belongs to. Filter with WHERE store IN ('Shop name') or GROUP BY store.
store_idstringdimensionThe shop's raw identifier — what an export or the API reports. Same shops as Store, shown as ids.
store_domainstringdimensionThe shop's myshopify.com domain. Filter with WHERE store_domain = 'shop.myshopify.com'.