Skip to main content

Pagination

List Endpoints (pageNo + pageSize)

Many list endpoints use offset-style pagination:
ParameterDescription
pageNoPage number (e.g. 1-based)
pageSizeNumber of items per page
Exact parameter names and response shape (e.g. total count, list field name) depend on the endpoint. See the API reference for each endpoint.

Cursor-Based Pagination (Some Endpoints)

Some endpoints may use cursor-based pagination instead:
ParameterDescription
pageSizeNumber of records per page
pageTokenOpaque token from the previous response’s nextPageToken
When the response includes nextPageToken, send it as pageToken to get the next page. Invalid pageToken returns 400.