Mar
9
Mon
Demo Day
10:06 PM – 4:27 AM
Zoom
Depono alo cupiditas non ab advoco.
calendar-events / #218
10:06 PM – 4:27 AM
Zoom
Depono alo cupiditas non ab advoco.
curl -sS \
"https://example-data.com/api/v1/calendar-events/218" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/218"
);
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/218"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/218"
)
calendar_event = res.json() {
"id": 218,
"ownerUserId": 94,
"title": "Demo Day",
"description": "Depono alo cupiditas non ab advoco.",
"startAt": "2026-03-09T22:06:41.290Z",
"endAt": "2026-03-10T04:27:11.979Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [],
"createdAt": "2026-04-30T05:03:50.324Z",
"updatedAt": "2026-05-07T12:19:26.412Z"
}