Headers
value must be Bearer <token>
where <token>
is api key prefixed with cal_ or managed user access token
Response
200 - application/json
The response is of type object
.
curl --request GET \
--url https://api.cal.com/v2/calendars/busy-times \
--header 'Authorization: <authorization>'
{
"status": "success",
"data": [
{
"start": "2023-11-07T05:31:56Z",
"end": "2023-11-07T05:31:56Z",
"source": "<string>"
}
]
}
Get busy times from a calendar. Example request URL is https://api.cal.com/v2/calendars/busy-times?loggedInUsersTz=Europe%2FMadrid&dateFrom=2024-12-18&dateTo=2024-12-18&calendarsToLoad[0][credentialId]=135&calendarsToLoad[0][externalId]=skrauciz%40gmail.com
curl --request GET \
--url https://api.cal.com/v2/calendars/busy-times \
--header 'Authorization: <authorization>'
{
"status": "success",
"data": [
{
"start": "2023-11-07T05:31:56Z",
"end": "2023-11-07T05:31:56Z",
"source": "<string>"
}
]
}
value must be Bearer <token>
where <token>
is api key prefixed with cal_ or managed user access token
The response is of type object
.
Was this page helpful?