Skip to main content
Categories
< All Topics
Print

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.

ParameterDescriptionNotes
limitThe number of records to return in this requestDefault is 50. Minimum value is 1
offsetThe 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
Table of Contents
Translate »