Skip to main content
With classic pagination, a collection of records is broken down into pages which are individually returned. Endpoints that use classic pagination support a page_size query parameter (default: 50, maximum: 250) which determines how many records will be included in each page of results. To move between pages of results, simply increment the page query param with each subsequent request. If no page argument is provided, you will be returned the first page of results.
When you receive a response containing fewer than page_size objects, you know you’ve reached the last page.