Cursor pagination
All list endpoints that return potentially large result sets use cursor-based pagination (before + limit), not page numbers.
Query parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
limit | integer | 20 | Max records to return per page |
before | ISO 8601 timestamp | — | Return records created before this timestamp (exclusive) |
How to paginate
Response shape
Paginated endpoints return adata array directly. When the array length is less than limit, you’ve reached the end.
Endpoints that support pagination
| Endpoint | Pagination params |
|---|---|
GET /message-feed | limit, before |
GET /notification-list | limit, before |
GET /transaction-list | limit, before |
GET /escrow-list | limit, before |
GET /review-list | limit, before |