Jul
2
Thu
Security Training
1:14 AM – 4:00 AM
Main Boardroom
Adipiscor contego cunctatio vulariter.
Overview
calendar-events / #236
1:14 AM – 4:00 AM
Main Boardroom
Adipiscor contego cunctatio vulariter.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/236" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/236" ); 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/236"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/236"
)
calendar_event = res.json() Response
{
"id": 236,
"ownerUserId": 101,
"title": "Security Training",
"description": "Adipiscor contego cunctatio vulariter.",
"startAt": "2026-07-02T01:14:50.815Z",
"endAt": "2026-07-02T04:00:18.537Z",
"isAllDay": false,
"location": "Main Boardroom",
"attendeeUserIds": [
130,
248,
15,
145
],
"createdAt": "2026-03-27T01:00:08.571Z",
"updatedAt": "2026-05-05T07:43:22.857Z"
}