May
10
Sun
Strategy Workshop
2:59 PM – 2:59 PM
Main Boardroom
Eligendi virga xiphias videlicet sursum deripio.
Overview
calendar-events / #310
2:59 PM – 2:59 PM
Main Boardroom
Eligendi virga xiphias videlicet sursum deripio.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/310" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/310" ); 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/310"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/310"
)
calendar_event = res.json() Response
{
"id": 310,
"ownerUserId": 130,
"title": "Strategy Workshop",
"description": "Eligendi virga xiphias videlicet sursum deripio.",
"startAt": "2026-05-10T14:59:25.162Z",
"endAt": "2026-05-11T14:59:25.162Z",
"isAllDay": true,
"location": "Main Boardroom",
"attendeeUserIds": [
165,
125,
28
],
"createdAt": "2026-04-09T23:37:50.685Z",
"updatedAt": "2026-05-15T15:47:32.711Z"
}