curl --request GET \
--url https://api.shipbob.com/2025-07/inventory-level \
--header 'Authorization: Bearer <token>'
{
"first": "string",
"items": [
{
"inventory_id": 0,
"name": "string",
"sku": "string",
"total_awaiting_quantity": 0,
"total_backordered_quantity": 0,
"total_committed_quantity": 0,
"total_exception_quantity": 0,
"total_fulfillable_quantity": 0,
"total_internal_transfer_quantity": 0,
"total_on_hand_quantity": 0,
"total_sellable_quantity": 0
}
],
"last": "string",
"next": "string",
"prev": "string"
}
Authentication using Personal Access Token (PAT) token
OK
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.shipbob.com/2025-07/inventory-level \
--header 'Authorization: Bearer <token>'
{
"first": "string",
"items": [
{
"inventory_id": 0,
"name": "string",
"sku": "string",
"total_awaiting_quantity": 0,
"total_backordered_quantity": 0,
"total_committed_quantity": 0,
"total_exception_quantity": 0,
"total_fulfillable_quantity": 0,
"total_internal_transfer_quantity": 0,
"total_on_hand_quantity": 0,
"total_sellable_quantity": 0
}
],
"last": "string",
"next": "string",
"prev": "string"
}