Skip to main content

Pagination

All list endpoints in the RxScale APIs support pagination through query parameters.

Query Parameters

Pages are zero-indexed. The first page is page=0, not page=1.

Response Format

Paginated endpoints return:
  • data — Array of items for the current page
  • totalRegistries — Total number of items across all pages
  • totalPages — Total number of pages (calculated as ceil(totalRegistries / limit))

Limits

Requesting a limit above the maximum will be capped to the maximum.

Example

Fetching the second page of 25 products:
Response:

Iterating Through All Pages

Use the smallest limit that makes sense for your use case. Smaller pages mean faster responses and less memory usage.