Mar
28
Sat
Quarterly Review
6:50 AM – 8:02 AM
Conference Room A
Comminor adfero abundans.
Overview
calendar-events / #186
6:50 AM – 8:02 AM
Conference Room A
Comminor adfero abundans.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/186" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/186" ); 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/186"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/186"
)
calendar_event = res.json() Response
{
"id": 186,
"ownerUserId": 81,
"title": "Quarterly Review",
"description": "Comminor adfero abundans.",
"startAt": "2026-03-28T06:50:06.150Z",
"endAt": "2026-03-28T08:02:42.488Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [],
"createdAt": "2026-03-05T00:42:04.228Z",
"updatedAt": "2026-04-07T04:21:08.823Z"
}