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

# List products

`GET /products`

Retrieve list of products.

## Query parameters

- `product_name` string
- `page_size` integer
- `order` 'asc' | 'desc'
- `cursor` string

## Response `200`

OK

- object
  - `status` 'success', required
  - `data` ListProductConfigResponse, required
    - `products` ProductConfig[], required
      - `id` string, required
      - `created_at` string, date-time
      - `updated_at` string, date-time
      - `product_name` string
      - `is_system_product` boolean, required
      - `description` string
      - `models` string[], required
  - `message` string, required
  - `has_next` boolean, required — Whether there are more items beyond this page.
  - `next_url` string — Full URL to fetch the next page. Only present when has_next is true.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `404` — Not Found
- `500` — Internal Server Error

---

[API](https://skmtc.dev/prequel/apis/prequel-data-export.md) · [All operations](https://skmtc.dev/prequel/apis/prequel-data-export/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/prequel/prequel-data-export/revisions/09c662a871f8/schema)
