Skip to main content
GET
/
stores
/
{storeId}
/
inventory-items
List Inventory Items
curl --request GET \
  --url https://api.getredo.com/v2.2/stores/{storeId}/inventory-items \
  --header 'Authorization: Bearer <token>'
{
  "inventory_items": [
    {
      "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"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Headers

X-Page-Continue
string

Page marker, from X-Page-Next header

X-Page-Size
integer

Page size, defaults to 20

Required range: 1 <= x <= 500

Path Parameters

storeId
string
required

Store ID

Example:

"64e5a8a1af49a89df37e4ee7"

Query Parameters

location_id
string

Filter by location ID (e.g. loc_...)

kind
enum<string>

Filter by inventory item kind

Available options:
PRODUCT,
RETURN,
UNDECLARED,
UNKNOWN

Response

Success

inventory_items
Inventory Item · object[]
required