Aug
17
Mon
Board Meeting
9:44 PM – 1:17 AM
Office - Floor 3
Venio pectus adopto tondeo acceptus demonstro deficio cupiditate.
Overview
calendar-events / #271
9:44 PM – 1:17 AM
Office - Floor 3
Venio pectus adopto tondeo acceptus demonstro deficio cupiditate.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/271" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/271" ); 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/271"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/271"
)
calendar_event = res.json() Response
{
"id": 271,
"ownerUserId": 115,
"title": "Board Meeting",
"description": "Venio pectus adopto tondeo acceptus demonstro deficio cupiditate.",
"startAt": "2026-08-17T21:44:02.996Z",
"endAt": "2026-08-18T01:17:42.182Z",
"isAllDay": false,
"location": "Office - Floor 3",
"attendeeUserIds": [
140,
93
],
"createdAt": "2026-03-20T03:58:55.999Z",
"updatedAt": "2026-03-22T20:48:56.766Z"
}