v1
latestOpenAPI 3.0.32026-07-26120117318.1 KBProducts
List products
Returns a paginated list of products for the authenticated project. Products are ordered by creation date (newest first). Manifest-compliant: list envelope, string enums, ISO 8601 timestamps.
get/products
Query parameters
limitinteger
Maximum number of products to return. Min 1, max 100.
starting_afterstring
Cursor for pagination. Pass the id of the last product from the previous page to fetch the next page.
filter[type]string
Filter products by type. Can be repeated for multiple values (OR logic).
Response
A paginated list of products.
Example response
{
"url": "/v4/products",
"data": [
{
"id": "premium_monthly",
"url": "/v4/products/premium_monthly",
"created_at": "2025-09-15T12:30:00Z",
"updated_at": "2025-11-03T10:26:40Z"
}
]
}