Pagination
Quidax API endpoints return lists of resources, such as withdrawals, instant orders, and orders. To improve performance and response times, these endpoints return results in paginated format, meaning each request returns only a subset of the total results.
Page Size
By default, all list endpoints return 50 results per page. You can control the number of results returned by using the per_page query parameter. The maximum value allowed for per_page is 100.
Pagination Headers
When requesting paginated resources, the API returns additional response headers that help you retrieve the next set of results.
| Header | Description |
|---|---|
| X-Next-Page | Indicates the cursor or page value required to fetch the next set of results. If this value is empty, there are no more results available. |
| X-Total | The total number of resources available for the requested endpoint. |
Updated about 1 month ago
