Mar
16
Mon
Board Meeting
4:10 PM – 4:10 PM
Office - Floor 3
Ademptio amita labore vapulus aranea vicissitudo vilicus tubineus vulgivagus porro.
Overview
calendar-events / #125
4:10 PM – 4:10 PM
Office - Floor 3
Ademptio amita labore vapulus aranea vicissitudo vilicus tubineus vulgivagus porro.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/125" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/125" ); 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/125"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/125"
)
calendar_event = res.json() Response
{
"id": 125,
"ownerUserId": 53,
"title": "Board Meeting",
"description": "Ademptio amita labore vapulus aranea vicissitudo vilicus tubineus vulgivagus porro.",
"startAt": "2026-03-16T16:10:25.556Z",
"endAt": "2026-03-17T16:10:25.556Z",
"isAllDay": true,
"location": "Office - Floor 3",
"attendeeUserIds": [
79
],
"createdAt": "2026-03-28T15:15:12.791Z",
"updatedAt": "2026-04-12T13:45:14.438Z"
}