May
24
Sun
Architecture Review
1:29 PM – 5:47 PM
Rooftop
Vere vester theca balbus crur cauda credo explicabo sed tepesco.
calendar-events / #8
1:29 PM – 5:47 PM
Rooftop
Vere vester theca balbus crur cauda credo explicabo sed tepesco.
curl -sS \
"https://example-data.com/api/v1/calendar-events/8" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/8"
);
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/8"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/8"
)
calendar_event = res.json() {
"id": 8,
"ownerUserId": 3,
"title": "Architecture Review",
"description": "Vere vester theca balbus crur cauda credo explicabo sed tepesco.",
"startAt": "2026-05-24T13:29:17.148Z",
"endAt": "2026-05-24T17:47:47.880Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [],
"createdAt": "2026-04-03T08:05:53.678Z",
"updatedAt": "2026-05-12T22:17:22.579Z"
}