How it works
- Make your first request with a
limit:
- Check
has_moreandnext_cursorin the response:
- Pass
next_cursoras thecursorparam for the next page:
- Repeat until
has_moreisfalse.
Parameters
| Parameter | Type | Default | Max |
|---|---|---|---|
limit | integer | 20 | 100 |
cursor | string | — | — |
Cursor format
Cursors are opaque strings — don’t parse or construct them. Always use thenext_cursor value from the previous response.
Different endpoints use different cursor formats internally:
- Leaderboard:
{score}_{address} - Whale trades:
{timestamp}_{id}(ISO 8601) - Insider radar:
{score}_{id}
Tips
- Cursors are stable for the current sort order. Don’t mix cursors between different filter combinations.
- If you get a
400with"Invalid cursor format", you’re using a cursor from a different endpoint or an expired cursor.