Apr
6
Mon
Architecture Review
10:15 AM – 1:32 PM
Office - Floor 3
Tabgo patria sum decor vorago tenax quod atrocitas thesis.
Overview
calendar-events / #31
10:15 AM – 1:32 PM
Office - Floor 3
Tabgo patria sum decor vorago tenax quod atrocitas thesis.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/31" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/31" ); 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/31"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/31"
)
calendar_event = res.json() Response
{
"id": 31,
"ownerUserId": 16,
"title": "Architecture Review",
"description": "Tabgo patria sum decor vorago tenax quod atrocitas thesis.",
"startAt": "2026-04-06T10:15:54.496Z",
"endAt": "2026-04-06T13:32:52.585Z",
"isAllDay": false,
"location": "Office - Floor 3",
"attendeeUserIds": [
167
],
"createdAt": "2026-03-04T20:02:04.697Z",
"updatedAt": "2026-05-03T05:33:43.187Z"
}