Jun
4
Thu
Off-site Planning
7:39 AM – 12:52 PM
Office - Floor 3
Aspicio deporto cribro cito tam absorbeo comparo surculus tamisium illum.
Overview
calendar-events / #89
7:39 AM – 12:52 PM
Office - Floor 3
Aspicio deporto cribro cito tam absorbeo comparo surculus tamisium illum.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/89" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/89" ); 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/89"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/89"
)
calendar_event = res.json() Response
{
"id": 89,
"ownerUserId": 37,
"title": "Off-site Planning",
"description": "Aspicio deporto cribro cito tam absorbeo comparo surculus tamisium illum.",
"startAt": "2026-06-04T07:39:42.897Z",
"endAt": "2026-06-04T12:52:34.003Z",
"isAllDay": false,
"location": "Office - Floor 3",
"attendeeUserIds": [
84,
217,
158
],
"createdAt": "2026-05-13T18:17:16.301Z",
"updatedAt": "2026-05-15T19:55:24.899Z"
}