Skip to main content
Endpoints that return collections use offset-based pagination with page and limit query parameters.

Query Parameters

Response Shape

Every paginated endpoint wraps results in a consistent envelope:
array
The array of result objects for this page.
number
The current page number.
number
The page size used for this request.
number
The total number of records across all pages.
number
The total number of pages given the current limit.

Example Request

Fetching All Pages

To retrieve the complete result set, iterate until page >= meta.totalPages:

Notes

  • Page numbers start at 1. Requesting page 0 is equivalent to page 1.
  • The limit parameter caps the maximum records per page. The server may return fewer records than requested on the last page.
  • Endpoints that do not return large collections (such as fetching a single project by ID) do not support pagination parameters.