Jul
2
Thu
Board Meeting
3:28 PM – 8:41 PM
Deleo depulso nam ars anser cui aspicio argumentum vesco.
Overview
calendar-events / #487
3:28 PM – 8:41 PM
Deleo depulso nam ars anser cui aspicio argumentum vesco.
Board Meeting
3:28 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/487" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/487" ); 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/487"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/487"
)
calendar_event = res.json() Response
{
"id": 487,
"ownerUserId": 200,
"title": "Board Meeting",
"description": "Deleo depulso nam ars anser cui aspicio argumentum vesco.",
"startAt": "2026-07-02T15:28:45.696Z",
"endAt": "2026-07-02T20:41:39.239Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
197,
36,
187,
108
],
"createdAt": "2026-05-03T07:21:09.667Z",
"updatedAt": "2026-05-18T21:04:37.002Z"
}