Pagination

Resource lists are always paginated. A response looks similar to this:

{
    "data": [ ... ],
    "page": 1,
    "pages": 3,
    "results": 300
}
  • The data object array contains the requested resource.

  • Pages start at 1. You can retrieve a specific page of results by adding ?page=x to your URLfor example, ?page=4. If the value of page exceeds 2^64/page_size, the API returns the last possible page.

  • Page size defaults to 100. This is the total number of objects included in the data array. Append the query string ?page_size=x to change the default. Set x to a value between 25 and 500 objects.