Skip to main content
GET
/
2026-01
/
inventory-level
/
{inventoryId}
Get Inventory Levels
curl --request GET \
  --url https://sandbox-api.shipbob.com/2026-01/inventory-level/{inventoryId} \
  --header 'Authorization: Bearer <token>'
{
  "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
}

Authorizations

Authorization
string
header
required

Authentication using Personal Access Token (PAT) token

Path Parameters

inventoryId
string<int32>
required

Response

OK

inventory_id
integer<int32>

Unique identifier for the inventory item

name
string | null

Name of the inventory item

sku
string | null

Stock keeping unit identifier

total_awaiting_quantity
integer<int32>

Total quantity expected to arrive from receiving or transfers

total_backordered_quantity
integer<int32>

Total quantity on backorder for pending shipments

total_committed_quantity
integer<int32>

Total quantity reserved for existing orders and allocations

total_exception_quantity
integer<int32>

Total quantity in exception status (damaged, lost, or under investigation)

total_fulfillable_quantity
integer<int32>

Total quantity available to fulfill new orders (on-hand minus committed)

total_internal_transfer_quantity
integer<int32>

Total quantity currently in transit between fulfillment centers

total_on_hand_quantity
integer<int32>

Total quantity physically present in all fulfillment centers

total_sellable_quantity
integer<int32>

Total quantity available for sale (fulfillable plus awaiting)