Jul
14
Tue
Architecture Review
12:58 PM – 12:58 PM
Main Boardroom
Constans tolero aperiam aurum.
Overview
calendar-events / #536
12:58 PM – 12:58 PM
Main Boardroom
Constans tolero aperiam aurum.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/536" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/536" ); 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/536"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/536"
)
calendar_event = res.json() Response
{
"id": 536,
"ownerUserId": 223,
"title": "Architecture Review",
"description": "Constans tolero aperiam aurum.",
"startAt": "2026-07-14T12:58:57.506Z",
"endAt": "2026-07-15T12:58:57.506Z",
"isAllDay": true,
"location": "Main Boardroom",
"attendeeUserIds": [
85
],
"createdAt": "2026-05-04T18:55:17.487Z",
"updatedAt": "2026-05-10T19:54:45.262Z"
}