Mar
28
Sat
Quarterly Review
4:35 PM – 6:34 PM
Conference Room B
Laboriosam comedo avaritia.
Overview
calendar-events / #43
4:35 PM – 6:34 PM
Conference Room B
Laboriosam comedo avaritia.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/43" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/43" ); 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/43"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/43"
)
calendar_event = res.json() Response
{
"id": 43,
"ownerUserId": 22,
"title": "Quarterly Review",
"description": "Laboriosam comedo avaritia.",
"startAt": "2026-03-28T16:35:08.613Z",
"endAt": "2026-03-28T18:34:47.810Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [
151,
141,
223
],
"createdAt": "2026-04-01T04:57:45.109Z",
"updatedAt": "2026-05-10T13:26:22.548Z"
}