Query parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
page | integer | 1 | Page number (1-indexed). |
size | integer | 10 | Number of items per page. |
Example request
Paginated response
Every paginated endpoint returns ameta object alongside the data array. The meta object contains all the information you need to navigate through result pages:
Meta fields
| Field | Type | Description |
|---|---|---|
pages | integer | Total number of pages available. |
prevPage | integer or null | Previous page number, or null if on the first page. |
nextPage | integer or null | Next page number, or null if on the last page. |
page | integer | Current page number. |
totalDocs | integer | Total number of documents across all pages. |
hasPrevPage | boolean | Whether a previous page exists. |
hasNextPage | boolean | Whether a next page exists. |
Supported endpoints
The following endpoints support pagination:| Endpoint | Method | Description |
|---|---|---|
/trades/wallets | GET | Fetch wallet addresses |
/trades/transactions | GET | Fetch transactions |
/payments/integration-banks | GET | Fetch saved bank accounts |
/payments/withdrawals | GET | Fetch withdrawals |
Iterating through pages
To retrieve all results, start atpage=1 and keep requesting the next page until hasNextPage is false: