Pagination
List endpoints return results in pages using offset pagination with two query parameters.
Parameters
All list endpoints, including Transactions, Deposits, Disputes, Stores, Merchants, Statements, and others, take the same two parameters:
Parameter | Type | Required | Description |
|---|---|---|---|
|
| Yes | Maximum number of records to return. Ranges from 1 to 1000. |
|
| Yes | Page number to retrieve, starting from 0. |
Example
Responses include the page of results in data alongside the full total, the current page, and the limit used:
Paging through results
To page through results, increment page while keeping limit constant (page=0, then page=1, and so on). An out-of-range page returns an empty data array but still surfaces the full total.
Try it out
POST