---
title: "Get products"
method: GET
path: "/products"
tags: ["Product Catalog"]
---

# Get products

`GET /products`

Returns all products for your tenant. The results on paginated. To fetch them all pass the cursor returned from a call to the subsequent call until all results are fetched. Initially the cursor should not be specified.

## Query parameters

- `cursor` string, uuid
- `limit` integer

## Response `200`

successful operation

- ProductJsonPaginationResponse
  - `data` ProductJson[]
    - `id` string — System-generated unique identifier for the product
    - `entityIds` string[] — Set of entity IDs associated with this product
    - `name` string, required — Unique name of the product
    - `displayName` string — Display name of the product shown to customers
    - `inUse` boolean — Indicates if the product is currently in use by any plans
    - `description` string — Detailed description of the product
    - `sku` string, required — Stock Keeping Unit (SKU) for the product
    - `productCategoryId` string — ID of the category this product belongs to
    - `productCategory` ProductCategory
      - `productCategoryId` string
      - `entityIds` string[]
      - `name` string
      - `description` string
      - `inUse` boolean
      - `updatedOn` integer
      - `pkId` string, uuid
    - `updatedOn` integer — Timestamp of when the product was last updated (in seconds since epoch)
    - `externalId` string — External identifier for the product, used for integration with other systems
    - `eventObjectId` string
  - `numElements` integer
  - `nextCursor` string, uuid

---

[API](https://skmtc.net/dealhub/apis/quote-api.md) · [All operations](https://skmtc.net/dealhub/apis/quote-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/dealhub/quote-api/versions/c30f5b9fbfab/schema)
