Aug
18
Tue
Engineering All-Hands
4:26 AM – 10:21 AM
Office - Floor 3
Victus defluo magni auditor.
Overview
calendar-events / #191
4:26 AM – 10:21 AM
Office - Floor 3
Victus defluo magni auditor.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/191" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/191" ); 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/191"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/191"
)
calendar_event = res.json() Response
{
"id": 191,
"ownerUserId": 84,
"title": "Engineering All-Hands",
"description": "Victus defluo magni auditor.",
"startAt": "2026-08-18T04:26:16.652Z",
"endAt": "2026-08-18T10:21:24.247Z",
"isAllDay": false,
"location": "Office - Floor 3",
"attendeeUserIds": [
25,
30,
131,
246
],
"createdAt": "2026-04-09T17:59:18.252Z",
"updatedAt": "2026-04-23T19:39:15.595Z"
}