May
21
Thu
Strategy Workshop
4:12 AM – 8:14 AM
Basium eius aequus.
Overview
calendar-events / #240
4:12 AM – 8:14 AM
Basium eius aequus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/240" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/240" ); 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/240"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/240"
)
calendar_event = res.json() Response
{
"id": 240,
"ownerUserId": 102,
"title": "Strategy Workshop",
"description": "Basium eius aequus.",
"startAt": "2026-05-21T04:12:40.531Z",
"endAt": "2026-05-21T08:14:35.340Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
84,
156,
129
],
"createdAt": "2026-04-29T04:56:26.267Z",
"updatedAt": "2026-05-05T11:50:54.471Z"
}