Apr
9
Thu
Quarterly Review
8:55 PM – 8:55 PM
Google Meet
Bestia vita vulnero xiphias.
calendar-events / #29
8:55 PM – 8:55 PM
Google Meet
Bestia vita vulnero xiphias.
curl -sS \
"https://example-data.com/api/v1/calendar-events/29" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/29"
);
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/29"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/29"
)
calendar_event = res.json() {
"id": 29,
"ownerUserId": 14,
"title": "Quarterly Review",
"description": "Bestia vita vulnero xiphias.",
"startAt": "2026-04-09T20:55:07.203Z",
"endAt": "2026-04-10T20:55:07.203Z",
"isAllDay": true,
"location": "Google Meet",
"attendeeUserIds": [],
"createdAt": "2026-04-26T19:10:53.173Z",
"updatedAt": "2026-04-30T05:30:34.798Z"
}