Inventory
List inventory
Paginated list of inventory records.
GET
/api/inventory/
Query parameters
sku
Filter by SKU. Supports partial match.
location_id
Filter by hub/warehouse location.
min_quantity
Only return items with quantity >= this value.
page
Page number. Defaults to 1.
per_page
Results per page. Max 100.
curl -G https://{licensee-url}/api/inventory/ \ -H "Authorization: Bearer $TOKEN" \ -d "location_id=hub-atl-01" \ -d "min_quantity=1"
{
"data": [
{
"inventory_id": "inv_abc123",
"sku": "SOFA-001",
"name": "3-Seat Sofa",
"location_id": "hub-atl-01",
"quantity": 42,
"reserved": 8,
"available": 34
}
],
"pagination": { "page": 1, "total": 1247 }
}
Try it out
Response will appear here