May
24
Sun
Design Critique
12:28 PM – 2:09 PM
Conference Room A
Voluptas ago super apostolus.
Overview
calendar-events / #444
12:28 PM – 2:09 PM
Conference Room A
Voluptas ago super apostolus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/444" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/444" ); 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/444"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/444"
)
calendar_event = res.json() Response
{
"id": 444,
"ownerUserId": 182,
"title": "Design Critique",
"description": "Voluptas ago super apostolus.",
"startAt": "2026-05-24T12:28:11.016Z",
"endAt": "2026-05-24T14:09:51.849Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [
160
],
"createdAt": "2026-03-10T00:15:31.869Z",
"updatedAt": "2026-04-28T08:07:40.311Z"
}