Jul
19
Sun
Budget Review
3:22 AM – 4:36 AM
Conference Room B
Eligendi angelus aduro alo agnitio curriculum amissio nostrum.
Overview
calendar-events / #414
3:22 AM – 4:36 AM
Conference Room B
Eligendi angelus aduro alo agnitio curriculum amissio nostrum.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/414" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/414" ); 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/414"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/414"
)
calendar_event = res.json() Response
{
"id": 414,
"ownerUserId": 170,
"title": "Budget Review",
"description": "Eligendi angelus aduro alo agnitio curriculum amissio nostrum.",
"startAt": "2026-07-19T03:22:48.057Z",
"endAt": "2026-07-19T04:36:28.248Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [
71,
58,
126,
72
],
"createdAt": "2026-05-17T17:31:09.897Z",
"updatedAt": "2026-05-19T12:51:11.260Z"
}