GET
/
v2
/
calendars
/
{calendar}
/
event
/
{eventUid}
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>",
    "description": "<string>",
    "locations": [
      "<any>"
    ],
    "attendees": [
      {
        "email": "<string>",
        "name": "<string>",
        "responseStatus": "accepted",
        "self": true,
        "optional": true
      }
    ],
    "status": "accepted",
    "hosts": [
      {
        "email": "<string>",
        "name": "<string>"
      }
    ],
    "source": "google"
  }
}

Headers

Authorization
string
required

value must be Bearer <token> where <token> is api key prefixed with cal_ or managed user access token

Path Parameters

calendar
enum<string>
required
Available options:
google
eventUid
string
required

The Google Calendar event ID

Response

200 - application/json

The response is of type object.