Mar
8
Sun
Engineering All-Hands
7:10 PM – 2:26 AM
Conference Room A
Conscendo esse spiritus arguo crepusculum corroboro.
Overview
calendar-events / #102
7:10 PM – 2:26 AM
Conference Room A
Conscendo esse spiritus arguo crepusculum corroboro.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/102" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/102" ); 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/102"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/102"
)
calendar_event = res.json() Response
{
"id": 102,
"ownerUserId": 42,
"title": "Engineering All-Hands",
"description": "Conscendo esse spiritus arguo crepusculum corroboro.",
"startAt": "2026-03-08T19:10:41.607Z",
"endAt": "2026-03-09T02:26:56.579Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [],
"createdAt": "2026-02-26T19:15:00.875Z",
"updatedAt": "2026-05-09T18:07:48.687Z"
}