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

# List Connections

> Retrieve all email sequencer connections for your workspace

## Query Parameters

<ParamField query="client_id" type="string">
  Filter connections by client ID
</ParamField>

<ParamField query="type" type="string">
  Filter by type: `instantly`, `emailbison`, or `lemlist`
</ParamField>

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "https://app.replyify.ai/api/connections" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```javascript Node.js theme={null}
  const response = await fetch("https://app.replyify.ai/api/connections", {
    headers: { Authorization: "Bearer YOUR_API_KEY" },
  });
  const { data } = await response.json();
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      "https://app.replyify.ai/api/connections",
      headers={"Authorization": "Bearer YOUR_API_KEY"},
  )
  data = response.json()["data"]
  ```
</CodeGroup>

### Example Response

```json theme={null}
{
  "data": [
    {
      "id": "uuid",
      "workspace_id": "uuid",
      "client_id": "uuid",
      "type": "instantly",
      "name": "My Instantly Account",
      "api_url": null,
      "status": "active",
      "created_at": "2025-01-15T10:00:00Z",
      "updated_at": "2025-01-15T10:00:00Z",
      "clients": {
        "id": "uuid",
        "name": "Acme Corp Campaign"
      }
    }
  ]
}
```
