Skip to main content
GET
/
stores
/
{storeId}
/
inventory-levels
/
{inventoryLevelId}
Get Inventory Level
curl --request GET \
  --url https://api.getredo.com/v2.2/stores/{storeId}/inventory-levels/{inventoryLevelId} \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.getredo.com/v2.2/stores/{storeId}/inventory-levels/{inventoryLevelId}"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.getredo.com/v2.2/stores/{storeId}/inventory-levels/{inventoryLevelId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.getredo.com/v2.2/stores/{storeId}/inventory-levels/{inventoryLevelId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.getredo.com/v2.2/stores/{storeId}/inventory-levels/{inventoryLevelId}"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.getredo.com/v2.2/stores/{storeId}/inventory-levels/{inventoryLevelId}")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.getredo.com/v2.2/stores/{storeId}/inventory-levels/{inventoryLevelId}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "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,
    "buildable": 0,
    "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"
  }
}
{
"detail": "<string>",
"instance": "<string>",
"title": "<string>",
"type": "about:blank"
}
{
"detail": "<string>",
"instance": "<string>",
"title": "<string>",
"type": "about:blank"
}

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"

inventoryLevelId
string
required

Inventory level ID

Example:

"li_9b2c4d6e8f"

Response

Success

inventory_level
Inventory Level Detail · object
required

Inventory level detail.