Pagination
Was this helpful?
Requests that return multiple items can be paginated. The standard way of performing pagination is with GET parameters - limit and offset. Page numbering is 1-based.
limit
The number of records to return in this request
Default is 50. Minimum value is 1
offset
The position to retrieve the records from.
Default is 0. Minumum value is 0
$ curl -i https://api.example.com/v2/statistics/advertiser/sites?limit=5&offset=40Was this helpful?
Was this helpful?

