May
5
Tue
Design Critique
5:14 AM – 5:14 AM
Cafeteria
Patria conduco catena aeger congregatio.
Overview
calendar-events / #87
5:14 AM – 5:14 AM
Cafeteria
Patria conduco catena aeger congregatio.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/87" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/87" ); 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/87"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/87"
)
calendar_event = res.json() Response
{
"id": 87,
"ownerUserId": 37,
"title": "Design Critique",
"description": "Patria conduco catena aeger congregatio.",
"startAt": "2026-05-05T05:14:29.641Z",
"endAt": "2026-05-06T05:14:29.641Z",
"isAllDay": true,
"location": "Cafeteria",
"attendeeUserIds": [
12,
173,
193,
14
],
"createdAt": "2026-02-23T13:16:04.405Z",
"updatedAt": "2026-03-04T19:39:00.084Z"
}