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

# Pagination

> Page through list results.

`patterns/list`, `references/list`, `products/list` and `orders/list` return results newest first, up to `limit` per page, with a `nextCursor`:

```json theme={null}
{
  "items": [...],
  "nextCursor": "eyJjcmVhdGVkQXQiOi..."
}
```

Omit `cursor` for the first page. Pass the previous `nextCursor` as `cursor` to get the next page. A `null` `nextCursor` marks the last page.
