Paginated endpoints
| Endpoint | Default behavior |
|---|---|
GET /v1/users/transactions | Returns all transactions if page is omitted. Use page and page_size for paginated results. |
GET /v1/links | Returns all links with count, next, and previous fields. |
Request parameters
| Parameter | Type | Description |
|---|---|---|
page | integer | Page number (1-based). Omit to fetch all results at once. |
page_size | integer | Number of results per page. Min 10, max 500. Default 500. |
Example request
Response format
Paginated responses include navigation fields alongside the data:| Field | Type | Description |
|---|---|---|
count | integer | Total number of results across all pages |
next | string or null | URL for the next page, null if on the last page |
previous | string or null | URL for the previous page, null if on the first page |
Iterating through pages
To retrieve all results, follow thenext URL until it returns null.