May
17
Sun
Security Training
5:22 PM – 7:16 PM
Office - Floor 3
Amicitia vitae carbo venia artificiose virtus.
Overview
calendar-events / #591
5:22 PM – 7:16 PM
Office - Floor 3
Amicitia vitae carbo venia artificiose virtus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/591" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/591" ); 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/591"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/591"
)
calendar_event = res.json() Response
{
"id": 591,
"ownerUserId": 246,
"title": "Security Training",
"description": "Amicitia vitae carbo venia artificiose virtus.",
"startAt": "2026-05-17T17:22:46.526Z",
"endAt": "2026-05-17T19:16:44.238Z",
"isAllDay": false,
"location": "Office - Floor 3",
"attendeeUserIds": [
201,
110,
79,
229
],
"createdAt": "2026-05-12T07:54:38.368Z",
"updatedAt": "2026-05-20T03:58:57.083Z"
}