Feb
25
Wed
Engineering All-Hands
3:53 PM – 5:31 PM
Zoom
Debitis deporto beatus amita temporibus.
Overview
calendar-events / #93
3:53 PM – 5:31 PM
Zoom
Debitis deporto beatus amita temporibus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/93" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/93" ); 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/93"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/93"
)
calendar_event = res.json() Response
{
"id": 93,
"ownerUserId": 39,
"title": "Engineering All-Hands",
"description": "Debitis deporto beatus amita temporibus.",
"startAt": "2026-02-25T15:53:17.883Z",
"endAt": "2026-02-25T17:31:45.634Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
230,
132,
26,
239,
135
],
"createdAt": "2026-05-09T03:40:47.280Z",
"updatedAt": "2026-05-10T13:23:40.262Z"
}