PaginationData (see the live OpenAPI schema): fields are typically passed as pageNumber and pageSize (or similarly named query parameters as documented per route).
How to use it
- Start with
pageNumber(often 0- or 1-based per API convention — match the parameter description on each endpoint) and a reasonablepageSize. - If the response includes a full result set indicator or total count in the payload, use that to decide whether to request the next page.
- If the response is empty or shorter than
pageSize, you have reached the last page.
Client tips
- Cap
pageSizeto avoid timeouts and large payloads. - Do not assume global ordering unless the endpoint documentation states a sort order.