Mar
31
Tue
Budget Review
11:41 AM – 11:41 AM
Rooftop
Crinis delinquo corrupti arceo solutio.
calendar-events / #73
11:41 AM – 11:41 AM
Rooftop
Crinis delinquo corrupti arceo solutio.
curl -sS \
"https://example-data.com/api/v1/calendar-events/73" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/73"
);
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/73"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/73"
)
calendar_event = res.json() {
"id": 73,
"ownerUserId": 33,
"title": "Budget Review",
"description": "Crinis delinquo corrupti arceo solutio.",
"startAt": "2026-03-31T11:41:37.499Z",
"endAt": "2026-04-01T11:41:37.499Z",
"isAllDay": true,
"location": "Rooftop",
"attendeeUserIds": [
37,
91,
238,
10,
242
],
"createdAt": "2026-03-27T09:54:20.235Z",
"updatedAt": "2026-04-12T18:18:05.222Z"
}