> For the complete Lynkow documentation index in agent-friendly format, see [llms.txt](/llms.txt).

# List product collections

**Publié le** : 2026-08-19
**Catégorie** : Commerce

## `GET /product-collections`

**List product collections**

Returns a deterministic, paginated list of collections for the `:siteId`
in the URL. Pagination uses the public tier default of 20 and maximum of
100. Each item contains only its public wire id, slug, title, description,
public image URL, and SEO fields. Internal metadata, storage paths, tenant
identifiers, timestamps, and raw UUIDs are never returned.

> **Note:** This endpoint requires the e-commerce feature to be enabled on your site.

### Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `page` | query | number | No | Number |
| `limit` | query | number | No | Number <= 100 |


### Responses

| Status | Description |
| --- | --- |
| `200` | Successful response |
| `401` | Missing or invalid storefront publishable key |
| `402` | The site subscription does not currently permit this operation |
| `403` | The storefront key origin is not allowed |
| `404` | Site, resource, or commerce feature not found |
| `422` | Validation error |


---