> ## 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 Eventos (Lote)

> Recuperar eventos de múltiplos calendários em uma única chamada

# Obter Eventos (Lote)

Recuperar eventos de múltiplos calendários em uma única requisição, opcionalmente filtrados por intervalo de tempo. Útil para renderizar uma visão unificada de calendário entre equipes.

## Endpoint

```
GET /api/v1/calendars/events
```

## Parâmetros de consulta

<ParamField query="calendar_ids[]" type="array" required>
  Um ou mais UUIDs de calendário. Repita o parâmetro para múltiplos valores.
</ParamField>

<ParamField query="from" type="string">
  Limite inferior do horário de início do evento. ISO 8601.
</ParamField>

<ParamField query="to" type="string">
  Limite superior do horário de término do evento. ISO 8601.
</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/events?calendar_ids[]=cal-1&calendar_ids[]=cal-2&from=2024-01-15T00:00:00Z&to=2024-01-22T00:00:00Z" \
    -H "Authorization: Bearer talq_your_environment_token_here"
  ```
</RequestExample>

## Resposta

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": [
      {
        "id": "event-uuid-1",
        "calendar_id": "cal-1",
        "title": "Demo with Loja Brasil",
        "start_at": "2024-01-15T15:00:00Z",
        "end_at": "2024-01-15T15:30:00Z",
        "status": "confirmed"
      }
    ]
  }
  ```
</ResponseExample>
