Success Responses (2xx)
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}
Responses
Whenever multiple resources are returned by a query, a "total" attribute will be returned in the top level of the response:
{ "total":101 }
We will not return the query you submitted in the response.
Updated less than a minute ago