GET /v1/products
List products for the organization the API key belongs to.Request
Query Parameters
| Param | Type | Default | Description |
|---|---|---|---|
page | integer | 1 | Page number |
size | integer | 20 | Page size (max 100) |
search | string | — | Filter by name substring |
status | string | PUBLISHED | Lifecycle status: PUBLISHED, DRAFT, or ARCHIVED |
Response
description is omitted when unset.
GET /v1/products/:id
Get a single product.Request
Path Parameters
| Param | Type | Description |
|---|---|---|
id | string | The product ID to retrieve |
Response
status is one of PUBLISHED, DRAFT, or ARCHIVED.
Errors
| Status | Description |
|---|---|
401 | API key missing or invalid. |
404 | Product does not exist or does not belong to your organization. |