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

# Pagination

> How list endpoints return results in pages using nextToken and limit

All list endpoints provide paginated responses, with a default limit of 100 database entities per page. The response object contains elements of the current page in the `data` property and a `nextToken` in the response body if more items can be retrieved in a subsequent request.

## Parameters

| Parameter | Type   | Description                                                                                                         |
| --------- | ------ | ------------------------------------------------------------------------------------------------------------------- |
| nextToken | string | Optional query parameter that can be included in a request to a list endpoint to retrieve a specified page of data. |
| limit     | number | An integer (1-100, inclusive) for the number of records that will be returned in the response. Default: 100         |
