Jun
9
Tue
Budget Review
11:46 AM – 4:55 PM
Utpote tergum provident magnam civitas.
Overview
calendar-events / #192
11:46 AM – 4:55 PM
Utpote tergum provident magnam civitas.
Budget Review
11:46 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/192" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/192" ); 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/192"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/192"
)
calendar_event = res.json() Response
{
"id": 192,
"ownerUserId": 84,
"title": "Budget Review",
"description": "Utpote tergum provident magnam civitas.",
"startAt": "2026-06-09T11:46:30.203Z",
"endAt": "2026-06-09T16:55:35.154Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
110,
69,
189,
129
],
"createdAt": "2026-04-22T00:30:04.283Z",
"updatedAt": "2026-05-11T11:23:57.402Z"
}