Jun
25
Thu
Engineering All-Hands
10:23 PM – 2:46 AM
Conference Room B
Video crustulum ubi cum tracto soleo.
Overview
calendar-events / #527
10:23 PM – 2:46 AM
Conference Room B
Video crustulum ubi cum tracto soleo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/527" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/527" ); 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/527"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/527"
)
calendar_event = res.json() Response
{
"id": 527,
"ownerUserId": 219,
"title": "Engineering All-Hands",
"description": "Video crustulum ubi cum tracto soleo.",
"startAt": "2026-06-25T22:23:30.204Z",
"endAt": "2026-06-26T02:46:55.909Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [
114,
21,
213,
184,
175
],
"createdAt": "2026-05-20T20:41:30.909Z",
"updatedAt": "2026-05-21T14:53:20.369Z"
}