Jul
27
Mon
Architecture Review
3:46 AM – 5:02 AM
Rooftop
Animi adeptio decens articulus bis amita.
Overview
calendar-events / #212
3:46 AM – 5:02 AM
Rooftop
Animi adeptio decens articulus bis amita.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/212" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/212" ); const calendarEvent = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/calendar-events.d.ts https://example-data.com/types/calendar-events.d.ts
import type { CalendarEvent } from "./types/calendar-events";
const res = await fetch(
"https://example-data.com/api/v1/calendar-events/212"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/212"
)
calendar_event = res.json() Response
{
"id": 212,
"ownerUserId": 92,
"title": "Architecture Review",
"description": "Animi adeptio decens articulus bis amita.",
"startAt": "2026-07-27T03:46:28.432Z",
"endAt": "2026-07-27T05:02:22.100Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
110,
1,
222
],
"createdAt": "2026-03-02T02:12:02.259Z",
"updatedAt": "2026-04-13T09:50:41.323Z"
}