May
11
Mon
Strategy Workshop
5:08 AM – 5:08 AM
Zoom
Commodo crustulum animi.
Overview
calendar-events / #246
5:08 AM – 5:08 AM
Zoom
Commodo crustulum animi.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/246" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/246" ); 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/246"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/246"
)
calendar_event = res.json() Response
{
"id": 246,
"ownerUserId": 105,
"title": "Strategy Workshop",
"description": "Commodo crustulum animi.",
"startAt": "2026-05-11T05:08:23.294Z",
"endAt": "2026-05-12T05:08:23.294Z",
"isAllDay": true,
"location": "Zoom",
"attendeeUserIds": [],
"createdAt": "2026-02-28T16:23:29.750Z",
"updatedAt": "2026-03-04T13:54:19.765Z"
}