For the complete documentation index, see llms.txt. This page is also available as Markdown.

Pagination

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.

Parameter
Description
Notes

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

Example

$ curl -i https://api.example.com/v2/statistics/advertiser/sites?limit=5&offset=40

Was this helpful?