---
title: "List Inventory Levels"
method: GET
path: "/stores/{storeId}/inventory-levels"
tags: ["Inventory Levels"]
---

# List Inventory Levels

`GET /stores/{storeId}/inventory-levels`

List inventory levels, representing the aggregate quantity of a product at a specific location. Sorted by most recently updated first.
Requires the [`inventory_read`](/docs/api-reference/scopes) scope.

## Query parameters

- `location_id` string
- `product_id` string
- `sku` string
- `updated_at_min` string, date-time
- `updated_at_max` string, date-time

## Headers

- `X-Page-Continue` string
- `X-Page-Size` integer

## Response `200`

Success

- object
  - `inventory_levels` InventoryLevelListSchema[], required
    - `id` string, required — Prefixed inventory level ID (`li_...`).
    - `product` InventoryLevelProductSummarySchema, required — Product summary in an inventory level response.
      - `id` string, required — Prefixed product ID (`prd_...`).
      - `title` string, required — Product title including variant options.
      - `sku` string, nullable, required — Stock keeping unit.
    - `location` InventoryLevelLocationSchema, required — Location summary in an inventory level response.
      - `id` string, required — Prefixed location ID (`loc_...`).
      - `name` string, required — Location name.
    - `quantity` integer, required — On-hand quantity.
    - `available` integer, required — Available quantity (`quantity - committed - reserved`).
    - `committed` integer, required — Allocated to unfulfilled orders.
    - `reserved` integer, required — Held (damaged, QC, etc.).
    - `buildable` integer, required — Can be assembled from BOM components.
    - `total_available` integer, required — Total available (`available + buildable`).
    - `updated_at` string, date-time, required — Last updated timestamp (ISO 8601).

## Other responses

- `default` — Error

---

[API](https://skmtc.dev/redoapp/apis/redo-api.md) · [All operations](https://skmtc.dev/redoapp/apis/redo-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/redoapp/redo-api/revisions/119714540a45/schema)
