Pagination
All list endpoints use cursor-based pagination for consistent, performant results.Request Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | integer | 20 | Items per page (1–100) |
starting_after | string | — | Cursor: return items after this ID |
Response Format
| Field | Type | Description |
|---|---|---|
data | array | The list of items |
has_more | boolean | Whether more items exist after this page |
next_cursor | string | null | The ID to pass as starting_after for the next page |