calendar.get
Get details of a specific calendar event
Scope: calendar:read
Get full details of a calendar event by ID.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
eventId | string | Yes | The event ID |
Example
Agent: "Show me the details of the team sync event"
-> calendar.get({ eventId: "evt_abc123" })Returns
{
"eventId": "evt_abc123",
"title": "Team Sync",
"description": "Weekly standup",
"startAt": "2026-04-07T10:00:00.000Z",
"endAt": "2026-04-07T11:00:00.000Z",
"isAllDay": false,
"location": "Zoom",
"metadata": {},
"createdAt": "2026-04-06T12:00:00.000Z",
"updatedAt": "2026-04-06T12:00:00.000Z"
}REST Equivalent
GET /v0/calendar/:eventId