GET
/
api
/
v1
/
calcom
/
event-types
curl https://api.ravan.ai/api/v1/calcom/event-types \
  -H "X-Api-Key: YOUR_API_KEY"
{
  "success": true,
  "message": "Event types fetched successfully",
  "data": [
    {
      "id": "evt_123456",
      "slug": "intro-call",
      "title": "Introductory Call",
      "description": "A 30-minute introductory call to discuss your needs",
      "duration_minutes": 30,
      "price": 0,
      "currency": "USD",
      "is_active": true
    },
    {
      "id": "evt_789012",
      "slug": "consultation",
      "title": "Paid Consultation",
      "description": "60-minute in-depth consultation session",
      "duration_minutes": 60,
      "price": 99.50,
      "currency": "USD",
      "is_active": true
    }
  ]
}
Requires an active Cal.com connection. Use the Cal.com Status endpoint to verify your connection before calling this endpoint.

Authorizations

X-Api-Key
string
required
Your Agni API key. Find it in your support@ravan.ai under Settings → API Keys.

Response

success
boolean
Whether the request succeeded.
message
string
Human-readable status message.
data
object[]
Array of Cal.com event types.
curl https://api.ravan.ai/api/v1/calcom/event-types \
  -H "X-Api-Key: YOUR_API_KEY"
{
  "success": true,
  "message": "Event types fetched successfully",
  "data": [
    {
      "id": "evt_123456",
      "slug": "intro-call",
      "title": "Introductory Call",
      "description": "A 30-minute introductory call to discuss your needs",
      "duration_minutes": 30,
      "price": 0,
      "currency": "USD",
      "is_active": true
    },
    {
      "id": "evt_789012",
      "slug": "consultation",
      "title": "Paid Consultation",
      "description": "60-minute in-depth consultation session",
      "duration_minutes": 60,
      "price": 99.50,
      "currency": "USD",
      "is_active": true
    }
  ]
}

Authorizations

X-Api-Key
string
header
required

Response

Successful response

success
boolean
message
string
data
object[]