Pagination
List endpoints use cursor-based pagination. Each response includes alinks object with URLs for navigating between pages.
How it works
- Make your initial request without any page parameter
- Check
links.nextin the response — if present, there are more results - Follow the
links.nextURL directly to get the next page - Repeat until
links.nextis absent
Response with pagination
page[size]:
| Parameter | Type | Default | Min | Max |
|---|---|---|---|---|
page[size] | integer | 100 | 1 | 100 |
Iterating through all pages
Filtering
Filter parameters use thefilter[field] syntax. Pass multiple values as comma-separated:
chain_ids, position_types, operation_types, trash, search_query, and fungible_ids. Each endpoint documents its available filters and accepted values in the relevant API reference page, such as wallet positions, wallet transactions, or fungibles search. For spam filtering behavior, see the spam filtering guide.
Sorting
Some endpoints support asort parameter. Prefix with - for descending order:
Currency
Most endpoints that return monetary values accept acurrency parameter. Default is usd.
eth/btc. See any currency-aware endpoint, such as wallet positions, for the full list.