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

# Pagination

> List API methods use keyset pagination to limit the number of results returned per request

## Specifying the number of results

The `limit` can optionally be set as a parameter on requests to list endpoints to set the maximum number of results to return. Limit can range between 1 and 100, and the default is 50.

```bash theme={null}
curl https://app.supercycle.com/api/v1/items?limit=10
```

## Requesting the next page

The response object for list endpoints will include a `nextPage` attribute. The value returned is a cursor
token which can be used to fetch the next page of results.

<Note>If the value of `nextPage` is `null` then you have reached the last page of the results.</Note>

To request the next page, include the token in the `page` parameter of the request.

```bash theme={null}
curl https://app.supercycle.com/api/v1/items?page=d97b06f29a0
```
