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

# .blog()

> Filter articles by blog

```javascript theme={null}
openbridge.articles.list().blog(handle)
```

Filters articles to only return those from the specified blog.

## Parameters

| Param    | Type     | Required | Description     |
| -------- | -------- | -------- | --------------- |
| `handle` | `string` | Yes      | The blog handle |

## Returns

`ArticleListBuilder` (chainable)

## Examples

### Filter by blog

```javascript theme={null}
const { items } = await openbridge.articles.list().blog('news')
```

### With limit and select

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