Pagination
Endpoints that are paginated can end with /count/
or /page{#}/
where {#}
is the number of the page of results to return (for example: /page5/
).
Paginated endpoints return up to 100 records at a time, and default to /page1/
when no page is specified.
To get the 2nd set of 100 records, use /page2/
, and /page3/
to get the 3rd set of 100, etc.
Use the /count/
option at the end of the endpoint to get a JSON response like this:
[{ "records":"788" }]
In the above example, there would be /page1/
(records 1-100) through /page7/
(records 701-788) for the results.