Aug
8
Sat
Engineering All-Hands
9:34 PM – 3:00 AM
Villa cimentarius itaque velociter ademptio creator terebro sponte comis.
Overview
calendar-events / #371
9:34 PM – 3:00 AM
Villa cimentarius itaque velociter ademptio creator terebro sponte comis.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/371" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/371" ); 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/371"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/371"
)
calendar_event = res.json() Response
{
"id": 371,
"ownerUserId": 152,
"title": "Engineering All-Hands",
"description": "Villa cimentarius itaque velociter ademptio creator terebro sponte comis.",
"startAt": "2026-08-08T21:34:59.314Z",
"endAt": "2026-08-09T03:00:29.003Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
168
],
"createdAt": "2026-04-13T19:52:25.323Z",
"updatedAt": "2026-05-21T22:04:57.929Z"
}