Jun
19
Fri
Design Critique
5:04 AM – 7:01 AM
Rooftop
Abbas aranea rerum cetera crur sordeo tutamen advenio tabella ago.
calendar-events / #6
5:04 AM – 7:01 AM
Rooftop
Abbas aranea rerum cetera crur sordeo tutamen advenio tabella ago.
curl -sS \
"https://example-data.com/api/v1/calendar-events/6" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/6"
);
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/6"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/6"
)
calendar_event = res.json() {
"id": 6,
"ownerUserId": 2,
"title": "Design Critique",
"description": "Abbas aranea rerum cetera crur sordeo tutamen advenio tabella ago.",
"startAt": "2026-06-19T05:04:20.827Z",
"endAt": "2026-06-19T07:01:32.510Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
165,
28
],
"createdAt": "2026-04-13T14:16:38.070Z",
"updatedAt": "2026-04-20T11:11:50.228Z"
}