> ## Documentation Index
> Fetch the complete documentation index at: https://www.latitude.sh/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Pagination

> Paginating through list endpoints

By default, the page size is `20` and the page number `1`. This can however be changed by including the `page[size]` and `page[number]` query parameters

E.g. 10 per page, second page

```curl theme={null}
curl --request GET \
  --url 'https://api.latitude.sh/servers?page[size]=10&page[number]=2' \
  --header 'Authorization: Bearer API_KEY' \
```
