> ## 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 results

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

Sets the maximum number of products to return.

## Parameters

| Param   | Type     | Required | Default | Description            |
| ------- | -------- | -------- | ------- | ---------------------- |
| `count` | `number` | Yes      | `250`   | Max products to return |

## Returns

`ProductListBuilder` (chainable)

## Examples

### Basic

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

### With collection

```javascript theme={null}
const { items } = await openbridge.products
    .list()
    .collection('featured')
    .limit(6)
```

### Large batch

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