GET
/
api
/
v1
/
calcom
/
event-types
/
lookup
/
{platform_id}
curl "https://api.ravan.ai/api/v1/calcom/event-types/lookup/intro-call" \
  -H "X-Api-Key: YOUR_API_KEY"
{
  "success": true,
  "message": "Event type 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
  }
}

Authorizations

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

Path Parameters

platform_id
string
required
Cal.com event type ID or slug (e.g. evt_123456 or intro-call).

Response

success
boolean
Whether the request succeeded.
message
string
Human-readable status message.
data
object
The event type details.
curl "https://api.ravan.ai/api/v1/calcom/event-types/lookup/intro-call" \
  -H "X-Api-Key: YOUR_API_KEY"
{
  "success": true,
  "message": "Event type 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
  }
}

Authorizations

X-Api-Key
string
header
required

Path Parameters

platform_id
string
required

Event type ID or slug

Response

Successful response

success
boolean
message
string
data
object