May
24
Sun
Security Training
9:07 AM – 9:07 AM
Titulus cometes via carbo alo strenuus civis accendo bene deprimo.
Overview
calendar-events / #502
9:07 AM – 9:07 AM
Titulus cometes via carbo alo strenuus civis accendo bene deprimo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/502" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/502" ); 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/502"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/502"
)
calendar_event = res.json() Response
{
"id": 502,
"ownerUserId": 208,
"title": "Security Training",
"description": "Titulus cometes via carbo alo strenuus civis accendo bene deprimo.",
"startAt": "2026-05-24T09:07:11.823Z",
"endAt": "2026-05-25T09:07:11.823Z",
"isAllDay": true,
"location": null,
"attendeeUserIds": [
104,
96
],
"createdAt": "2026-04-25T10:40:31.150Z",
"updatedAt": "2026-05-10T03:16:53.676Z"
}