Pagination
List endpoints use cursor pagination.
Send the first request without a cursor:
curl "https://api.sixoneeighters.com/v1/trades?limit=50" \
-H "Authorization: Bearer tja_live_xxx"The response includes an opaque next_cursor when another page is available:
{
"data": [],
"pagination": {
"limit": 50,
"has_more": true,
"next_cursor": "eyJ2IjoxLCJzb3J0IjoiZXhlY3V0ZWRfYXQi..."
}
}Pass that cursor to fetch the next page:
curl "https://api.sixoneeighters.com/v1/trades?limit=50&cursor=eyJ2IjoxLCJzb3J0IjoiZXhlY3V0ZWRfYXQi..." \
-H "Authorization: Bearer tja_live_xxx"Stop when has_more is false or next_cursor is null.
Page size
limit defaults to 50 and is capped at 100.
Cursor rules
Cursors are opaque and endpoint-specific. Do not parse or modify them. If filters such as start, end, status, market, or symbol are used on the first request, keep the same filters on every cursor request.
Offset pagination is not supported.