Get available inventory Run in API Explorer
Ask AI
Retrieve available inventory counts and detailed inventory breakdown by warehouse, status, lot, and expiration date for all seller items.
GET
/api/external/hub/v1/inventory
curl \
--request GET 'https://api.useshelf.com/api/external/hub/v1/inventory?page=42'
Response examples (200)
[
{
"mpn": "string",
"upc": "string",
"ean": "string",
"item_id": "string",
"available_quantity": 42,
"inventory": [
{
"warehouse_name": "string",
"warehouse_id": 42,
"expiration": "string",
"status": "string",
"lot": "string",
"quantity": 42
}
]
}
]