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

# connections

> Read access to integration connections.

## Methods

### find()

```typescript
find(options: { name: string; type: string; pageSize: number }): Promise<object | undefined>
```

Find the first connection whose name matches (case-insensitive).

Pages through `ConnectionsResource.list` until a match is found.

#### Parameters

<ResponseField name={"options"} type={"{ name: string; type: string; pageSize: number }"} required />

#### Returns

`Promise<object | undefined>`

The matching connection, or `undefined` if none is found.

### list()

```typescript
list(options?: { pageSize: number; pageToken: string; type: string }): Promise<Page<object>>
```

List integration connections.

#### Parameters

<ResponseField name={"options"} type={"{ pageSize: number; pageToken: string; type: string }"} />

#### Returns

`Promise<Page<object>>`

A page of connections.
