May
30
Sat
Retrospective
9:28 AM – 2:13 PM
Zoom
Pel turpis traho crux vir.
Overview
calendar-events / #72
9:28 AM – 2:13 PM
Zoom
Pel turpis traho crux vir.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/72" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/72" ); 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/72"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/72"
)
calendar_event = res.json() Response
{
"id": 72,
"ownerUserId": 32,
"title": "Retrospective",
"description": "Pel turpis traho crux vir.",
"startAt": "2026-05-30T09:28:07.750Z",
"endAt": "2026-05-30T14:13:44.040Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
124,
100,
87,
61
],
"createdAt": "2026-03-16T08:22:19.045Z",
"updatedAt": "2026-05-02T07:49:26.602Z"
}