Jun
29
Mon
Off-site Planning
7:26 PM – 7:26 PM
Zoom
Civitas sollers accusantium tunc.
Overview
calendar-events / #429
7:26 PM – 7:26 PM
Zoom
Civitas sollers accusantium tunc.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/429" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/429" ); 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/429"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/429"
)
calendar_event = res.json() Response
{
"id": 429,
"ownerUserId": 176,
"title": "Off-site Planning",
"description": "Civitas sollers accusantium tunc.",
"startAt": "2026-06-29T19:26:24.263Z",
"endAt": "2026-06-30T19:26:24.263Z",
"isAllDay": true,
"location": "Zoom",
"attendeeUserIds": [
216
],
"createdAt": "2026-03-07T18:13:46.776Z",
"updatedAt": "2026-04-05T16:14:07.427Z"
}