May
25
Mon
Quarterly Review
9:14 PM – 11:23 PM
Office - Floor 3
Usque demergo accendo totidem sub turba minus blandior spargo surculus.
Overview
calendar-events / #355
9:14 PM – 11:23 PM
Office - Floor 3
Usque demergo accendo totidem sub turba minus blandior spargo surculus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/355" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/355" ); 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/355"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/355"
)
calendar_event = res.json() Response
{
"id": 355,
"ownerUserId": 146,
"title": "Quarterly Review",
"description": "Usque demergo accendo totidem sub turba minus blandior spargo surculus.",
"startAt": "2026-05-25T21:14:19.503Z",
"endAt": "2026-05-25T23:23:54.047Z",
"isAllDay": false,
"location": "Office - Floor 3",
"attendeeUserIds": [
58,
231
],
"createdAt": "2026-04-21T06:38:35.854Z",
"updatedAt": "2026-05-18T03:52:42.489Z"
}