Resource lists are always paginated. A response looks similar to this:
{
"data": [ ... ],
"page": 1,
"pages": 3,
"results": 300
}
-
The
dataobject array contains the requested resource. -
Pages start at 1. You can retrieve a specific page of results by adding
?page=xto your URL—for example,?page=4. If the value ofpageexceeds2^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
dataarray. Append the query string?page_size=xto change the default. Setxto a value between 25 and 500 objects.
