Apr
14
Tue
Security Training
4:38 AM – 6:41 AM
Conference Room A
Cado qui consequatur undique tondeo terra ustilo cui tabula.
Overview
calendar-events / #175
4:38 AM – 6:41 AM
Conference Room A
Cado qui consequatur undique tondeo terra ustilo cui tabula.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/175" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/175" ); 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/175"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/175"
)
calendar_event = res.json() Response
{
"id": 175,
"ownerUserId": 76,
"title": "Security Training",
"description": "Cado qui consequatur undique tondeo terra ustilo cui tabula.",
"startAt": "2026-04-14T04:38:07.127Z",
"endAt": "2026-04-14T06:41:19.298Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [
44,
99
],
"createdAt": "2026-04-20T17:07:39.819Z",
"updatedAt": "2026-05-13T09:34:35.135Z"
}