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

# Pagination

> Pagination when accessing the Spacebring API

All endpoints that list objects provide common support for pagination.

## Pagination parameters

All pagination parameters are optional.

| Parameter       | Type     | Description                             | Default |
| :-------------- | :------- | :-------------------------------------- | :------ |
| `limit`         | `number` | The number of objects to return.        | `25`    |
| `nextPageToken` | `string` | Token acquired from a previous request. |         |

### limit

The `limit` parameter is the number of objects to return.
Allowed range is 1-100.

### nextPageToken

To retrieve the next page use the `nextPageToken` value from the response as the `nextPageToken` parameter in your subsequent request.

If there are no more pages, the `nextPageToken` field will not be present in the response.
