Apr
20
Mon
Engineering All-Hands
6:22 AM – 6:22 AM
Office - Floor 3
Fugiat adstringo cresco venia curto accusator derelinquo totam viridis.
Overview
calendar-events / #22
6:22 AM – 6:22 AM
Office - Floor 3
Fugiat adstringo cresco venia curto accusator derelinquo totam viridis.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/22" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/22" ); 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/22"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/22"
)
calendar_event = res.json() Response
{
"id": 22,
"ownerUserId": 10,
"title": "Engineering All-Hands",
"description": "Fugiat adstringo cresco venia curto accusator derelinquo totam viridis.",
"startAt": "2026-04-20T06:22:26.883Z",
"endAt": "2026-04-21T06:22:26.883Z",
"isAllDay": true,
"location": "Office - Floor 3",
"attendeeUserIds": [
107,
234,
208,
190
],
"createdAt": "2026-03-10T09:29:03.687Z",
"updatedAt": "2026-03-23T00:45:05.689Z"
}