> ## 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 articles to return

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

Sets the maximum number of articles to return per request.

## Parameters

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

## Returns

`ArticleListBuilder` (chainable)

## Examples

### Set limit

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

### With other options

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