Pagination
List endpoints support pagination:
- Default page size: 50
- Maximum page size: 100
- Query string:
?page=2&limit=25
Pagination object
{
"data": [],
"pagination": {
"page": 2,
"limit": 25,
"total": 250,
"totalPages": 10
}
}
Some list responses may include extra fields (for example has_more on trades). Always read pagination from the pagination object when present.
Standard error body
{
"error": "Error message here",
"code": "ERROR_CODE"
}