May
7
Thu
Engineering All-Hands
12:00 PM – 6:19 PM
Main Boardroom
Tergo defaeco utique caelum crur vulpes stips copiose.
Overview
calendar-events / #314
12:00 PM – 6:19 PM
Main Boardroom
Tergo defaeco utique caelum crur vulpes stips copiose.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/314" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/314" ); 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/314"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/314"
)
calendar_event = res.json() Response
{
"id": 314,
"ownerUserId": 132,
"title": "Engineering All-Hands",
"description": "Tergo defaeco utique caelum crur vulpes stips copiose.",
"startAt": "2026-05-07T12:00:47.584Z",
"endAt": "2026-05-07T18:19:28.087Z",
"isAllDay": false,
"location": "Main Boardroom",
"attendeeUserIds": [
235,
162,
195,
89,
81
],
"createdAt": "2026-04-28T02:38:15.152Z",
"updatedAt": "2026-05-11T13:55:29.468Z"
}