Responses
Whenever multiple resources are returned by a query, a "total" attribute will be returned in the top level of the response:
{ "total":101 }
Please note that the query you submitted is not included in the response.
Pagination
All requests with many results are paginated. By default, pagination will occur after 100 items but can be adjusted from 10-100 items. The user requests pagination by appending a query parameter at the end of their request, e.g. ?per_page=100
. Request a specific page using another query parameter, &page=1
. For paginated responses, your current page is returned within the response body as:
{"page":2}