Jun
14
Sun
Board Meeting
4:42 AM – 11:38 AM
Office - Floor 3
Deleo peccatus ante civis supellex quod.
Overview
calendar-events / #402
4:42 AM – 11:38 AM
Office - Floor 3
Deleo peccatus ante civis supellex quod.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/402" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/402" ); 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/402"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/402"
)
calendar_event = res.json() Response
{
"id": 402,
"ownerUserId": 165,
"title": "Board Meeting",
"description": "Deleo peccatus ante civis supellex quod.",
"startAt": "2026-06-14T04:42:46.706Z",
"endAt": "2026-06-14T11:38:58.228Z",
"isAllDay": false,
"location": "Office - Floor 3",
"attendeeUserIds": [],
"createdAt": "2026-05-04T19:40:56.880Z",
"updatedAt": "2026-05-16T22:15:52.603Z"
}