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 URL—for example,?page=4
. If the value ofpage
exceeds2^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. Setx
to a value between 25 and 500 objects.