SDK / API ReferenceCalendar
Get Event
Get details of a specific calendar event
Scope: calendar:read
Get full details of a calendar event by ID.
Request
import { Loomal } from "@loomal/sdk";
const loomal = new Loomal({ apiKey: process.env.LOOMAL_API_KEY! });
const event = await loomal.calendar.get("evt_abc123");import os
from loomal import Loomal
loomal = Loomal(api_key=os.environ["LOOMAL_API_KEY"])
event = loomal.calendar.get("evt_abc123")loomal calendar get evt_abc123calendar.get(event_id="evt_abc123")Available through @loomal/mcp — see MCP setup.
curl https://api.loomal.ai/v0/calendar/evt_abc123 \
-H "Authorization: Bearer loid-your-api-key"Path Parameters
| Param | Type | Description |
|---|---|---|
eventId | string | The event ID |
Response 200
{
"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"
}