page and limit query parameters to control which subset of records you receive.
Query parameters
The page number to retrieve. Starts at
1. Defaults to 1 if omitted.The number of records to return per page. Defaults to
10.Pagination object
When a list endpoint returns paginated data, the response includes apagination object alongside data:
Total number of records matching the current query, across all pages.
true if more records exist after the current page.true if records exist on earlier pages.Pass this value as
?page= to fetch the next page. Only meaningful when hasNextPage is true.Pass this value as
?page= to fetch the previous page. Only meaningful when hasPreviousPage is true.The page size used for this response — reflects your
limit parameter or the default of 10.The final page number, derived from
totalCount ÷ limit.Iterating all pages
Node.js