May
12
Tue
Security Training
12:45 AM – 5:25 AM
Antepono depono terror tres totus ocer.
Overview
calendar-events / #14
12:45 AM – 5:25 AM
Antepono depono terror tres totus ocer.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/14" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/14" ); 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/14"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/14"
)
calendar_event = res.json() Response
{
"id": 14,
"ownerUserId": 6,
"title": "Security Training",
"description": "Antepono depono terror tres totus ocer.",
"startAt": "2026-05-12T00:45:03.545Z",
"endAt": "2026-05-12T05:25:13.982Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
146,
42
],
"createdAt": "2026-03-09T14:51:43.686Z",
"updatedAt": "2026-03-12T14:12:37.124Z"
}