v1

latestOpenAPI 3.1.02026-07-134488210.8 KB
Inventory Levels

Get Inventory Level

Get a single inventory level by ID. Returns additional detail fields including external IDs, creation timestamp, product UPC, and image URL. Requires the inventory_read scope.

get/stores/{storeId}/inventory-levels/{inventoryLevelId}

Response

Success

Example response

{
  "inventory_level": {
    "id": "li_9b2c4d6e8f",
    "product": {
      "id": "prd_1a2b3c4d5e",
      "title": "Classic Cotton T-Shirt - Black / M",
      "sku": "TSH-BLK-M",
      "upc": "012345678901",
      "image_url": "https://cdn.example.com/tshirt-blk-m.jpg"
    },
    "location": {
      "id": "loc_4d8e1a2b3c",
      "name": "East Coast Warehouse"
    },
    "quantity": 1250,
    "available": 1100,
    "committed": 100,
    "reserved": 50,
    "total_available": 1100,
    "updated_at": "2026-03-31T18:45:00.000Z",
    "external_ids": {
      "shopify": "gid://shopify/InventoryItem/12345678"
    },
    "created_at": "2025-11-01T10:00:00.000Z"
  }
}