Pagination
Quidax's API offers the ability to list through resources such as Withdraws, Instant Orders, and Orders, and more through its endpoints. For performance reasons, the API will return only a subset of the entire result set in each API call.
By default, all "List" endpoints return paginated results. You may use the query params per_page
to control the number of results you see. For per_page
the default will be 50 but can optionally be increased to a maximum of 100.
When reading paginated responses from the API, the following response headers will also be sent:
Header | Description |
---|---|
X-Next-Page | The next cursor value retrieves more results. If empty, then there are no more results to retrieve. |
X-Total | Total resources created. |
Updated almost 2 years ago