> ## Documentation Index
> Fetch the complete documentation index at: https://dev.smile.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Classic pagination

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.

<Info>
  When you receive a response containing fewer than `page_size` objects, you know you've reached the last page.
</Info>
