Skip to main content
GET
/
api
/
v1
/
calendars
/
{calendar_id}
curl "https://app.talkover.ai/api/v1/calendars/calendar-uuid-1" \
  -H "Authorization: Bearer talq_your_environment_token_here"
{
  "success": true,
  "data": {
    "id": "calendar-uuid-1",
    "name": "Sales Demo Calendar",
    "timezone": "America/New_York",
    "owner_id": "user-uuid-1",
    "metadata": {},
    "created_at": "2024-01-01T10:00:00Z",
    "updated_at": "2024-01-15T18:00:00Z"
  }
}

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 Calendar

Retrieve a single calendar.

Endpoint

GET /api/v1/calendars/{calendar_id}

Path Parameters

calendar_id
string
required
Calendar UUID.

Request Headers

Authorization
string
required
Bearer token. Format: Bearer talq_your_environment_token_here

Examples

curl "https://app.talkover.ai/api/v1/calendars/calendar-uuid-1" \
  -H "Authorization: Bearer talq_your_environment_token_here"

Response

{
  "success": true,
  "data": {
    "id": "calendar-uuid-1",
    "name": "Sales Demo Calendar",
    "timezone": "America/New_York",
    "owner_id": "user-uuid-1",
    "metadata": {},
    "created_at": "2024-01-01T10:00:00Z",
    "updated_at": "2024-01-15T18:00:00Z"
  }
}