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

# List Provider Connections

> List external calendar provider connections for a calendar

# List Provider Connections

List external calendar provider connections attached to a calendar. Provider connections sync events with third-party calendar systems.

## Endpoint

```
GET /api/v1/calendars/{calendar_id}/providers
```

## Path parameters

<ParamField path="calendar_id" type="string" required>Calendar UUID.</ParamField>

## Request headers

<ParamField header="Authorization" type="string" required>
  Bearer token. Format: `Bearer talq_your_environment_token_here`
</ParamField>

## Response

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": [
      {
        "id": "conn-uuid-1",
        "provider": "calendar_provider_a",
        "external_calendar_id": "primary",
        "is_active": true,
        "last_sync_at": "2024-01-15T17:30:00Z"
      }
    ]
  }
  ```
</ResponseExample>
