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

# Obter Calendário

> Recuperar um calendário pelo ID

# Obter Calendário

Recuperar um único calendário.

## Endpoint

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

## Parâmetros de caminho

<ParamField path="calendar_id" type="string" required>UUID do calendário.</ParamField>

## Cabeçalhos da requisição

<ParamField header="Authorization" type="string" required>
  Token Bearer para autenticação. Formato: `Bearer talq_your_environment_token_here`
</ParamField>

## Exemplos

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

## Resposta

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "id": "calendar-uuid-1",
      "name": "Sales Demo Calendar",
      "timezone": "America/Sao_Paulo",
      "owner_id": "user-uuid-1",
      "metadata": {},
      "created_at": "2024-01-01T10:00:00Z",
      "updated_at": "2024-01-15T18:00:00Z"
    }
  }
  ```
</ResponseExample>
