Why cursor-based pagination
Cursor-based pagination returns a small, ordered slice of results plus an opaque token you pass back to get the next slice. Compared to offset-based pagination, cursors are typically more consistent and performant under concurrent writes and large datasets.Use the
cursor returned by the API as-is. Do not build or parse cursors on the client.How it works
- Request parameters
page_size— number of items per page. Typical range is 1–100 with default 10. Some endpoints may enforce different bounds; check the API Reference for specifics.cursor— pass the string returned inpaging.next_cursorfrom the previous response to load the next page.
- Response fields
paging.next_cursor— present only when there is more data to fetch. If it’s missing or empty, you’ve reached the end.
Example: Validators list
First page (nocursor):
paging.next_cursor from the previous response):
Some endpoints require additional filters (e.g., validator selectors or time ranges). Include the same filters on every paginated request. Refer to the API Reference for each endpoint’s required and optional parameters.
Endpoint-specific limits
While many endpoints acceptpage_size values between 1 and 100 (default 10), some may enforce different limits or include additional paging fields. Always check the API Reference for the exact bounds and response schema of each endpoint.

