Pagination

All GET requests will limit the number of results returned at a time for performance reasons. All APIs support pagination for enumerating large numbers of records in the responses. By default, only 25 results will be included at a time; you will need to increase the number of results per page or request each page consecutively. The API supports the following parameters for paginating results.

  • per_page: Number of results to return in response. Default is '25' and maximum value can be '100'.
  • page_no: The page number to return. Default is '1''.
    The total number of results, page number, and number of results per page are included in all API responses.
{
  "pagination": {
    "per_page": 25,
    "page_no": 1,
    "total": 123
  }
}