Jul
28
Tue
Engineering All-Hands
4:24 AM – 7:00 AM
Cafeteria
Compello trado suscipio.
Overview
calendar-events / #151
4:24 AM – 7:00 AM
Cafeteria
Compello trado suscipio.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/151" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/151" ); 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/151"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/151"
)
calendar_event = res.json() Response
{
"id": 151,
"ownerUserId": 65,
"title": "Engineering All-Hands",
"description": "Compello trado suscipio.",
"startAt": "2026-07-28T04:24:23.263Z",
"endAt": "2026-07-28T07:00:49.700Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [
245,
227,
143
],
"createdAt": "2026-04-10T09:11:18.396Z",
"updatedAt": "2026-04-16T11:31:47.952Z"
}