curl --request GET \
--url https://api.cal.com/v2/calendars/{calendar}/event/{eventUid} \
--header 'Authorization: <authorization>'{
"status": "success",
"data": {
"start": {
"time": "2023-11-07T05:31:56Z",
"timeZone": "<string>"
},
"end": {
"time": "2023-11-07T05:31:56Z",
"timeZone": "<string>"
},
"id": "<string>",
"title": "<string>",
"source": "google",
"description": "<string>",
"locations": [
{
"type": "video",
"url": "<string>",
"label": "<string>",
"password": "<string>",
"meetingCode": "<string>",
"accessCode": "<string>"
}
],
"attendees": [
{
"email": "<string>",
"name": "<string>",
"responseStatus": "accepted",
"self": true,
"optional": true,
"host": true
}
],
"status": "accepted",
"hosts": [
{
"email": "<string>",
"name": "<string>",
"responseStatus": "accepted"
}
],
"calendarEventOwner": {
"email": "<string>",
"name": "<string>"
}
}
}Returns detailed information about a meeting including attendance metrics
curl --request GET \
--url https://api.cal.com/v2/calendars/{calendar}/event/{eventUid} \
--header 'Authorization: <authorization>'{
"status": "success",
"data": {
"start": {
"time": "2023-11-07T05:31:56Z",
"timeZone": "<string>"
},
"end": {
"time": "2023-11-07T05:31:56Z",
"timeZone": "<string>"
},
"id": "<string>",
"title": "<string>",
"source": "google",
"description": "<string>",
"locations": [
{
"type": "video",
"url": "<string>",
"label": "<string>",
"password": "<string>",
"meetingCode": "<string>",
"accessCode": "<string>"
}
],
"attendees": [
{
"email": "<string>",
"name": "<string>",
"responseStatus": "accepted",
"self": true,
"optional": true,
"host": true
}
],
"status": "accepted",
"hosts": [
{
"email": "<string>",
"name": "<string>",
"responseStatus": "accepted"
}
],
"calendarEventOwner": {
"email": "<string>",
"name": "<string>"
}
}
}value must be Bearer <token> where <token> is api key prefixed with cal_ or managed user access token
google The Google Calendar event ID. You can retrieve this by getting booking references from the following endpoints:
Was this page helpful?