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
/v1/inventory
curl \
--request GET 'https://api.pattern.com/hub/v1/inventory?page=42' \
--header "Authorization: Bearer $ACCESS_TOKEN"
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
}
]
}
]