v1

latestOpenAPI 3.1.02026-07-134488210.8 KB
Inventory Items

Get Inventory Item

Get a single in-stock inventory item by ID. Requires the inventory_read scope.

get/stores/{storeId}/inventory-items/{inventoryItemId}

Response

Success

Example response

{
  "inventory_item": {
    "id": "ii_5f8e1a2b3c",
    "sku": "TSH-BLK-M",
    "name": "Classic Cotton T-Shirt - Black / M",
    "kind": "PRODUCT",
    "quantity": 250,
    "locations": [
      {
        "location_id": "loc_4d8e1a2b3c",
        "location_name": "East Coast Warehouse",
        "quantity": 120
      }
    ],
    "created_at": "2025-11-01T10:00:00.000Z",
    "updated_at": "2026-03-31T18:45:00.000Z"
  }
}