Mar
20
Fri
Security Training
11:05 AM – 5:19 PM
Zoom
Deprecator subseco sto tui clementia ciminatio caste.
Overview
calendar-events / #28
11:05 AM – 5:19 PM
Zoom
Deprecator subseco sto tui clementia ciminatio caste.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/28" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/28" ); 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/28"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/28"
)
calendar_event = res.json() Response
{
"id": 28,
"ownerUserId": 13,
"title": "Security Training",
"description": "Deprecator subseco sto tui clementia ciminatio caste.",
"startAt": "2026-03-20T11:05:43.167Z",
"endAt": "2026-03-20T17:19:18.883Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
194,
138,
179,
201,
34
],
"createdAt": "2026-04-18T07:08:28.315Z",
"updatedAt": "2026-04-30T05:21:41.091Z"
}