Endpoints returning collections support pagination using limit
and offset
query parameters.
limit
This parameter lets you specify the number of records to return in your API call.
offset
Used to page through the records. If there are more records available, a call to endpoints returning collections will return the next offset. This value is used in the offset parameter of the next call to get the next page of records.
{
"DATA": [
...
],
"nextOffset": 20
}