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

> List calendars in the environment

# List Calendars

List calendars in the environment. Calendars hold events, members, and provider connections — typically used by agents that schedule appointments.

## Endpoint

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

## Query parameters

<ParamField query="per_page" type="integer">Items per page. Range: `1`–`100`. Default: `25`.</ParamField>

## 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" \
    -H "Authorization: Bearer talq_your_environment_token_here"
  ```
</RequestExample>

## Response

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