Skip to main content
POST
/
inventory
/
get_items
Inventory - Get Items
curl --request POST \
  --url https://api.skulabs.com/inventory/get_items \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "item_ids": [
    "<string>"
  ],
  "warehouse_ids": [
    "<string>"
  ]
}
'
{
  "items": [
    {
      "location_id": "<string>",
      "item_id": "<string>",
      "on_hand": 123,
      "inbound": 123,
      "alert": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
item_ids
string[]
required

Array of item IDs to look up

warehouse_ids
string[]

Filter by warehouse IDs

Response

Inventory for requested items

items
object[]
required

Array of inventory items with location details