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

# Pagination

> How to paginate through resources

The Timbal API uses **cursor-based pagination** with page tokens for efficient navigation through large collections.

## Making Requests

**Initial request:**

```http theme={"dark"}
GET /apps
```

**Subsequent requests:**
When a response includes a `next_page_token`, use it as the `page_token` query parameter:

```http theme={"dark"}
GET /apps?page_token=eyJpZCI6IjEyMyIsInRzIjoxNjk...
```

<Tip>
  Page tokens are opaque strings—never parse or modify them.
</Tip>
