Response format
Every list endpoint returns the same pagination structure:| Field | Type | Description |
|---|---|---|
data | array | The list of items for the current page. |
hasMore | boolean | Whether there are more items after this page. |
nextCursor | string or null | The cursor to use for the next page. null when there are no more items. |
Fetching the next page
To fetch the next page, pass thenextCursor value as the cursor query parameter:
hasMore is false.
Parameters
| Parameter | Default | Max | Description |
|---|---|---|---|
limit | 50 | 100 | Number of items to return per page. |
cursor | - | - | Cursor from a previous response’s nextCursor field. |