Inventory

Inventory items with quantities across locations.

18 fields — 9 dimensions, 9 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
  SHOW item_count
  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.
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.