Feb
28
Sat
Architecture Review
4:31 PM – 8:52 PM
Adstringo decet vulariter territo ocer vesco civitas itaque volo.
Overview
calendar-events / #261
4:31 PM – 8:52 PM
Adstringo decet vulariter territo ocer vesco civitas itaque volo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/261" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/261" ); 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/261"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/261"
)
calendar_event = res.json() Response
{
"id": 261,
"ownerUserId": 111,
"title": "Architecture Review",
"description": "Adstringo decet vulariter territo ocer vesco civitas itaque volo.",
"startAt": "2026-02-28T16:31:04.937Z",
"endAt": "2026-02-28T20:52:25.862Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
6,
133,
135,
68,
83
],
"createdAt": "2026-04-20T16:05:21.088Z",
"updatedAt": "2026-04-28T19:45:37.573Z"
}