Skip to content

List Cal.com Event Types

Endpoint used to list event types of a user on Cal.com.

Terminal window
curl --request POST \
--url https://converflow.api.prod.toolzz.media/api/v1/calcom/event-types \
--header 'Authorization: Bearer TOKEN_HERE' \
--header 'Content-Type: application/json' \
--data '{
"apiKey": "string",
"username": "string"
}'
{
"eventTypes": [
{
"id": number,
"title": "string",
"slug": "string",
"length": number,
"description": "string"
}
]
}

ParameterTypeDescriptionRequired
AuthorizationStringAccess token (“Bearer” must be before the token)Yes
ParameterTypeDescriptionRequired
apiKeyStringAPI key (Live Key) generated in the Cal.com dashboard for authentication.Yes
usernameStringUnique user identifier (slug) on the Cal.com platform.Yes

KeyTypeDescription
eventTypes[]ArrayList of objects containing the available scheduling categories.
idNumberUnique identifier of the event type on the Cal.com platform.
titleStringFriendly name of the event displayed to the person scheduling (e.g., “30 min Meeting”).
slugStringURL identifier used to generate the direct link for the event.
lengthNumberTotal duration of the event in minutes.
descriptionStringExplanatory text detailing the purpose of the meeting (can be empty).

To access this endpoint, it is necessary to send a valid access token through the authorization header (Authorization) of the request. Additionally, the API is protected by other security measures to safeguard user data.

To access your access token, follow these steps:

  1. Log in to the ToolzzAI platform
  2. Click on “Settings”
  3. Click on “Access Token”
  4. Copy the access token

Access token page