Jun
18
Thu
Budget Review
2:24 PM – 7:45 PM
Conturbo ut alias carbo.
Overview
calendar-events / #160
2:24 PM – 7:45 PM
Conturbo ut alias carbo.
Budget Review
2:24 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/160" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/160" ); 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/160"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/160"
)
calendar_event = res.json() Response
{
"id": 160,
"ownerUserId": 68,
"title": "Budget Review",
"description": "Conturbo ut alias carbo.",
"startAt": "2026-06-18T14:24:45.831Z",
"endAt": "2026-06-18T19:45:46.045Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
84,
123,
204
],
"createdAt": "2026-04-13T00:48:25.999Z",
"updatedAt": "2026-04-25T05:22:28.076Z"
}