Jun
11
Thu
Board Meeting
10:31 AM – 10:31 AM
Cafeteria
Nulla inflammatio desparatus.
Overview
calendar-events / #472
10:31 AM – 10:31 AM
Cafeteria
Nulla inflammatio desparatus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/472" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/472" ); 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/472"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/472"
)
calendar_event = res.json() Response
{
"id": 472,
"ownerUserId": 191,
"title": "Board Meeting",
"description": "Nulla inflammatio desparatus.",
"startAt": "2026-06-11T10:31:02.735Z",
"endAt": "2026-06-12T10:31:02.735Z",
"isAllDay": true,
"location": "Cafeteria",
"attendeeUserIds": [
28
],
"createdAt": "2026-05-07T02:34:51.665Z",
"updatedAt": "2026-05-09T06:57:15.521Z"
}