Skip to main content
List endpoints accept the same set of pagination query parameters.

Query parameters

integer
default:"1"
Which page to fetch. 1-indexed.
integer
default:"10"
Page size. Maximum 100.
string
Column to sort by. Valid column names depend on the resource — see the relevant endpoint page.
string
Sort direction. One of ASC or DESC.

Response shape

Every paginated list returns the same envelope:
  • items — the page of records.
  • total — total count matching the filter (not just this page).
  • page, rowsPerPage — echoed from the request.

Example

Fetch the second page of customers, 25 per page:

Validation errors