Pagination
All endpoints fetching multiple items are paginated. Useskip to skip to the items you want to retrieve.
Use take to define how many items you want to retrieve.
skip and take are optional parameters.
If you do not input them, skip equals to 0 and take equals to 10.
Example
Response Format
Paginated responses will return an array of items. The total count is not included in the response.Pagination Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| skip | integer | 0 | Number of items to skip |
| take | integer | 10 | Number of items to take |
Limits
The maximum value fortake is 100. If you specify a larger value, it will be capped at 100.