improved

Enforcing pagination on list endpoints

Upcoming Changes (August 15, 2023)

Beginning on August 15th, 2023, all GET endpoints that return lists of objects will enforce limit/offset-style pagination. Most endpoints will have return up to 100 objects per request, though the limits are higher on certain endpoints.

Importantly, the structure of the response will change slightly when pagination is enabled. Rather than returning a list of items, endpoints will return an object with fields count, next, previous, and results; the last will contain the list of items themselves.

For more details, please see Working with pagination.