---
title: "List products"
method: GET
path: "/products"
tags: ["Reference Data"]
---

# List products

`GET /products`

Returns a paginated list of products.

## Query parameters

- `cursor` string — Cursor for pagination. Pass the previous response nextCursor value to fetch the next page.
- `limit` number — Number of items to return (max 100)
- `search` string — Search by product name

## Response `200`

OK

- object
  - `items` object[], required
    - `id` string, required — Product public ID
    - `name` string, required — Product name
    - `price` number, required — Product price
    - `description` string, nullable — Product description
    - `sku` string, nullable — SKU code
    - `type` string, required — Product type
    - `isActive` boolean, required — Whether product is active
  - `nextCursor` string, nullable — Cursor to fetch the next page. Null if there are no more results.
  - `hasMore` boolean, required — Whether additional results are available

---

[API](https://skmtc.net/heffl/apis/heffl-api-v2-beta.md) · [All operations](https://skmtc.net/heffl/apis/heffl-api-v2-beta/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/heffl/heffl-api-v2-beta/versions/27006cfef4d8/schema)
