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

# Pagination in the Unblocked API

List operations in the Unblocked API support pagination. Responses for these operations will include a `link` header if additional results exist. This header is omitted if all results fit on a single page.

The `link` header will look something like:

```
link: <https://getunblocked.com/api/v1/documents?limit=25&before=eyJjcmVhdGVkQXQiOiAi...>; rel="prev",
<https://getunblocked.com/api/v1/documents?limit=25&after=eyJjcmVhdGVkQXQiOiIy...>; rel="next"
```

Parse the URL from the `next` relation to get the link for the next page of results.
