Mar
18
Wed
Off-site Planning
11:14 AM – 3:42 PM
Zoom
Cito statua tenax aeneus aeneus trucido ea.
Overview
calendar-events / #228
11:14 AM – 3:42 PM
Zoom
Cito statua tenax aeneus aeneus trucido ea.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/228" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/228" ); 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/228"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/228"
)
calendar_event = res.json() Response
{
"id": 228,
"ownerUserId": 97,
"title": "Off-site Planning",
"description": "Cito statua tenax aeneus aeneus trucido ea.",
"startAt": "2026-03-18T11:14:05.915Z",
"endAt": "2026-03-18T15:42:20.291Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
214,
161,
64,
107,
236
],
"createdAt": "2026-03-31T11:39:15.449Z",
"updatedAt": "2026-05-20T21:09:15.735Z"
}