Jun
11
Thu
Security Training
9:52 AM – 3:35 PM
Rooftop
Deripio alius sed atrox.
Overview
calendar-events / #237
9:52 AM – 3:35 PM
Rooftop
Deripio alius sed atrox.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/237" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/237" ); 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/237"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/237"
)
calendar_event = res.json() Response
{
"id": 237,
"ownerUserId": 101,
"title": "Security Training",
"description": "Deripio alius sed atrox.",
"startAt": "2026-06-11T09:52:34.086Z",
"endAt": "2026-06-11T15:35:04.392Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
127
],
"createdAt": "2026-02-21T13:11:27.624Z",
"updatedAt": "2026-03-20T08:13:39.357Z"
}