May
18
Mon
Strategy Workshop
2:06 PM – 3:39 PM
Zoom
Versus aegrotatio dolor theatrum venustas caput defungo tutis iure.
Overview
calendar-events / #593
2:06 PM – 3:39 PM
Zoom
Versus aegrotatio dolor theatrum venustas caput defungo tutis iure.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/593" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/593" ); 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/593"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/593"
)
calendar_event = res.json() Response
{
"id": 593,
"ownerUserId": 247,
"title": "Strategy Workshop",
"description": "Versus aegrotatio dolor theatrum venustas caput defungo tutis iure.",
"startAt": "2026-05-18T14:06:04.213Z",
"endAt": "2026-05-18T15:39:05.042Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
146,
199,
139,
218
],
"createdAt": "2026-03-30T15:55:43.290Z",
"updatedAt": "2026-04-12T17:51:01.869Z"
}