Pagination

Pagination

Most API Responses can be paginated to reduce load times and data size which can be controlled via the url query string.

Pagination Example

GET /collection?max=100&offset=25

The above example will return 100 items from the requested route and starting at the 25th result, giving you records 25 through 125.
Both max and offset are optional and if not provided will default to max = 20 and offset = 0.
If desired, you can provide just one of the two:

Max results only (offset defaults to 0)

GET /collection?max=5

or

Offset only (max defaults to 20)

GET /collection?offset=50