All list endpoints use offset-based pagination with page and
pageSize query parameters.
| Parameter | Type | Default | Max |
|---|---|---|---|
page | integer | 1 | — |
pageSize | integer | 20 | 100 |
{
"data": [...],
"page": 1,
"pageSize": 20,
"totalCount": 143
}
Use totalCount to calculate the total number of pages:
Math.ceil(totalCount / pageSize).
GET /api/v1/orders?page=2&pageSize=20
Authorization: Bearer eyJhbGci...
Start typing to search...
Select the APIs you want to integrate. A ready-to-use Markdown file with full API specs and a project context template will be generated and downloaded. Paste it into your AI assistant to get started instantly.