---
title: "View stock details of a product"
method: GET
path: "/api/v1/products/{id}/stocks"
tags: ["Product"]
---

# View stock details of a product

`GET /api/v1/products/{id}/stocks`

Returns stock details of a given product

## Path parameters

- `id` string, required — Resource identifier.

## Response `200`

Success

- object
  - `data` object
    - `id` string — Resource identifier.
    - `totals` object
      - `pseudo` number, float, nullable
      - `sellable` number, float
      - `reserved` number, float
      - `correction` number, float, nullable
      - `physical` number, float
      - `openSalesOrders` number, float, nullable
      - `calculated` number, float
      - `producible` number, float, nullable
    - `warehouses` object[]
      - `id` string — Resource identifier.
      - `physical` number, float
    - `salesChannels` object[]
      - `id` string — Resource identifier.
      - `isShopActive` boolean — Whether the sales channel itself is active.
      - `isProductSalesChannelSettingActive` boolean — Whether the product-sales-channel connection is active.
      - `pseudo` number, float, nullable — calculated stock from pseudo number formula, null if not defined or invalid
      - `correction` number, float, nullable — The stock in the sales channel is adjusted up or down by this value.
      - `useIndividualSalesChannelSettings` boolean — Whether individual sales channel settings are used instead of product-level settings.
      - `isStockSyncActive` boolean — Whether stock synchronization is active for this product in this sales channel.

## Other responses

- `401` — Unable to authenticate the client
- `403` — Unable to authorize the client
- `404` — Resource was not found or not enough access privileges
- `406` — Requested resource representation does not exist.
- `429` — Too many API calls made.

---

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