Mar
18
Wed
Hiring Interview
5:09 AM – 10:10 AM
Main Boardroom
Vetus crustulum ducimus asper aiunt asporto.
Overview
calendar-events / #99
5:09 AM – 10:10 AM
Main Boardroom
Vetus crustulum ducimus asper aiunt asporto.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/99" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/99" ); 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/99"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/99"
)
calendar_event = res.json() Response
{
"id": 99,
"ownerUserId": 40,
"title": "Hiring Interview",
"description": "Vetus crustulum ducimus asper aiunt asporto.",
"startAt": "2026-03-18T05:09:19.121Z",
"endAt": "2026-03-18T10:10:55.329Z",
"isAllDay": false,
"location": "Main Boardroom",
"attendeeUserIds": [
147,
99,
5
],
"createdAt": "2026-05-16T14:00:59.788Z",
"updatedAt": "2026-05-19T10:45:02.047Z"
}