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

# Pagination

> Use opaque cursors for stable list pagination.

StoreInspect list endpoints use cursor pagination.

Request the first page with `limit`, then pass `next_cursor` to fetch the next page.

```json theme={null}
{
  "limit": 25,
  "cursor": "cur_Q29x7nK8uP4sVb2mL9rTe6Yh3DcWzAaF5gJ1kNpX0qRu"
}
```

## Rules

* Cursor tokens are opaque. Do not parse them or build your own.
* If filters change, discard the previous cursor and start a new search.
* An empty `data` array with no `next_cursor` means the result set is exhausted.
* Page-size caps are enforced by the API and documented in the OpenAPI schema.
* Cursors are tied to the original API key and query shape.

<Tip>
  Keep the full request body stable between pages. Changing filters while reusing a cursor returns an invalid cursor error.
</Tip>
