Jul
29
Wed
Security Training
9:33 PM – 12:02 AM
Zoom
Thema aranea sapiente clementia eveniet beatae bestia vespillo.
Overview
calendar-events / #529
9:33 PM – 12:02 AM
Zoom
Thema aranea sapiente clementia eveniet beatae bestia vespillo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/529" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/529" ); 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/529"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/529"
)
calendar_event = res.json() Response
{
"id": 529,
"ownerUserId": 221,
"title": "Security Training",
"description": "Thema aranea sapiente clementia eveniet beatae bestia vespillo.",
"startAt": "2026-07-29T21:33:59.388Z",
"endAt": "2026-07-30T00:02:08.914Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [],
"createdAt": "2026-04-18T04:33:46.238Z",
"updatedAt": "2026-04-19T10:13:51.058Z"
}