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

# .limit()

> Set maximum number of pages to return

```javascript theme={null}
openbridge.pages.list().limit(count)
```

Sets the maximum number of pages to return per request.

## Parameters

| Param   | Type     | Required | Default | Description             |
| ------- | -------- | -------- | ------- | ----------------------- |
| `count` | `number` | Yes      | `250`   | Maximum pages to return |

## Returns

`PageListBuilder` (chainable)

## Examples

### Set limit

```javascript theme={null}
const { items } = await openbridge.pages.list().limit(20)
```

### With other options

```javascript theme={null}
const { items } = await openbridge.pages
    .list()
    .limit(5)
    .select(['title', 'handle'])
```
