Aug
15
Sat
Budget Review
3:13 AM – 5:06 AM
Audentia arx aegrotatio timor amicitia.
Overview
calendar-events / #297
3:13 AM – 5:06 AM
Audentia arx aegrotatio timor amicitia.
Budget Review
3:13 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/297" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/297" ); 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/297"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/297"
)
calendar_event = res.json() Response
{
"id": 297,
"ownerUserId": 126,
"title": "Budget Review",
"description": "Audentia arx aegrotatio timor amicitia.",
"startAt": "2026-08-15T03:13:10.129Z",
"endAt": "2026-08-15T05:06:01.984Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [],
"createdAt": "2026-03-26T01:27:14.810Z",
"updatedAt": "2026-03-28T09:57:04.432Z"
}