Jun
29
Mon
Budget Review
12:45 PM – 3:21 PM
Adaugeo capio absque arceo cerno.
Overview
calendar-events / #560
12:45 PM – 3:21 PM
Adaugeo capio absque arceo cerno.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/560" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/560" ); 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/560"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/560"
)
calendar_event = res.json() Response
{
"id": 560,
"ownerUserId": 234,
"title": "Budget Review",
"description": "Adaugeo capio absque arceo cerno.",
"startAt": "2026-06-29T12:45:08.854Z",
"endAt": "2026-06-29T15:21:12.103Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
96,
229,
131,
204
],
"createdAt": "2026-04-30T10:05:38.250Z",
"updatedAt": "2026-05-07T11:58:13.555Z"
}