---
title: "List suppliers of an Inventory Product"
method: GET
path: "/inventory/products/{productId}/suppliers"
tags: ["InventoryProducts"]
---

# List suppliers of an Inventory Product

`GET /inventory/products/{productId}/suppliers`

Returns the paginated list of suppliers associated with a single
inventory product. Each entry describes the supplier-side ID
(e.g. their SKU), the default order quantity, and the unit
price.

## Query parameters

- `per_page` integer
- `page` integer

## Response `200`

Product suppliers were successfully retrieved.

- object
  - `data` SupplierProduct[], required
    - `id` string, uuid, required — The ID of the product-supplier relationship.
    - `product_id` string, uuid, required — The ID of the product.
    - `product_name` string — The name of the product.
    - `supplier_id` string, uuid, required — The ID of the supplier.
    - `supplier_name` string — The name of the supplier.
    - `supplier_product_id` string, uuid, required — The ID of the supplier product.
    - `order_quantity` integer, required — The default quantity of the product to order from this supplier.
    - `unit_price` integer, required — The unit price of this item in the lowest denomination for the product's currency.
    - `currency` string, required — The currency of the product.
    - `organisation_id` string, uuid, required — The ID of the organisation this product-supplier record belongs to.
  - `meta` PaginationMeta, required — Counts and positional information for the current page of a list response. Use `current_page` and `last_page` to drive pagination UI, `total` for result counts, and `per_page` to confirm the page size the server actually applied (which may differ from the requested value when capped).
    - `from` integer, required — The item number from which this results set starts from
    - `to` integer, required — The item number from which this results set ends at
    - `total` integer, required — The total number of results
    - `current_page` integer, required — The current page number
    - `last_page` integer, required — The page number of the last result set
    - `per_page` integer, required — The number of results per page
    - `path` string, required — The path of this api request

## Other responses

- `401` — The user is unauthenticated
- `404` — The resource couldn't be found

---

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