Each endpoint that returns a collection of objects are paginated. The default number of objects per page is 25. You can increase the number of objects per page with the query parameter perPage. The maximum number of objects per page is 100. You can specify the page with the query parameter page.

Each paginated endpoint will return a paginator object:

{
  ...
  "paginator": {
    "page": 1,
    "maxResults": 25,
    "totalResults": 4,
    "totalPages": 1
  }
}