Mar
14
Sat
Off-site Planning
8:38 PM – 12:20 AM
Zoom
Cruentus caput tersus.
calendar-events / #114
8:38 PM – 12:20 AM
Zoom
Cruentus caput tersus.
curl -sS \
"https://example-data.com/api/v1/calendar-events/114" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/114"
);
const calendarEvent = await res.json();import type { CalendarEvent } from "https://example-data.com/types/calendar-events.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/calendar-events/114"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/114"
)
calendar_event = res.json() {
"id": 114,
"ownerUserId": 48,
"title": "Off-site Planning",
"description": "Cruentus caput tersus.",
"startAt": "2026-03-14T20:38:14.041Z",
"endAt": "2026-03-15T00:20:44.229Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
165,
95,
101,
135,
166
],
"createdAt": "2026-03-06T18:11:27.837Z",
"updatedAt": "2026-03-25T03:26:23.809Z"
}