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

# Get Calendars Sync Status

> Get current sync status for connected calendars

# Get Calendars Sync Status

Get the current sync status for all calendars in the environment that have provider connections.

## Endpoint

```
GET /api/v1/calendars/sync-status
```

## Request headers

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

## Examples

<RequestExample>
  ```bash theme={null}
  curl "https://app.talkover.ai/api/v1/calendars/sync-status" \
    -H "Authorization: Bearer talq_your_environment_token_here"
  ```
</RequestExample>

## Response

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": [
      {
        "calendar_id": "calendar-uuid-1",
        "provider": "calendar_provider_a",
        "last_sync_at": "2024-01-15T17:30:00Z",
        "is_syncing": false,
        "events_synced": 142
      }
    ]
  }
  ```
</ResponseExample>
