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

Authorizations

Authorization
string
header
required

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

Path Parameters

storeId
string
required

Store ID

Example:

"64e5a8a1af49a89df37e4ee7"

inventoryItemId
string
required

Inventory item ID

Example:

"ii_5f8e1a2b3c"

Response

Success

inventory_item
Inventory Item · object
required

Inventory item list entry.