Jul
8
Wed
Budget Review
9:25 PM – 5:11 AM
Office - Floor 3
Uredo teres dolor apud volva.
Overview
calendar-events / #299
9:25 PM – 5:11 AM
Office - Floor 3
Uredo teres dolor apud volva.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/299" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/299" ); 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/299"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/299"
)
calendar_event = res.json() Response
{
"id": 299,
"ownerUserId": 126,
"title": "Budget Review",
"description": "Uredo teres dolor apud volva.",
"startAt": "2026-07-08T21:25:58.496Z",
"endAt": "2026-07-09T05:11:17.932Z",
"isAllDay": false,
"location": "Office - Floor 3",
"attendeeUserIds": [
237,
130,
135,
127,
163
],
"createdAt": "2026-05-13T13:10:33.859Z",
"updatedAt": "2026-05-15T13:57:08.192Z"
}