Jul
2
Thu
Design Critique
3:45 AM – 6:33 AM
Conference Room A
Agnosco arcus adsidue approbo.
Overview
calendar-events / #541
3:45 AM – 6:33 AM
Conference Room A
Agnosco arcus adsidue approbo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/541" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/541" ); 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/541"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/541"
)
calendar_event = res.json() Response
{
"id": 541,
"ownerUserId": 227,
"title": "Design Critique",
"description": "Agnosco arcus adsidue approbo.",
"startAt": "2026-07-02T03:45:05.381Z",
"endAt": "2026-07-02T06:33:52.197Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [
103,
209,
208,
46,
23
],
"createdAt": "2026-05-11T03:21:24.555Z",
"updatedAt": "2026-05-16T02:39:15.915Z"
}