Pagination

By default, most endpoints that return lists of data include a limit and an offset parameter. The exact default value for these depends on the exact endpoint and is described in the reference documentation below.

You can change the number of records, for the endpoints that permit it, on a per-request basis by passing a limit parameter in the request URL parameters. Example: limit=50.

When the response exceeds the limit maximum, you can paginate through the records by specifying the offset parameter. Example: offset=45.

Inaccuracies may be introduced in pages because of the limitations of API pagination. Paginated data may be inaccurate because of the real-time nature of the data. One or more items may be added or removed from your Interact instance between next page requests and during the course of iterating over all the items.