Jun
25
Thu
Customer Interview
4:48 AM – 7:09 AM
Conference Room A
Curtus ars catena.
Overview
calendar-events / #200
4:48 AM – 7:09 AM
Conference Room A
Curtus ars catena.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/200" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/200" ); 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/200"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/200"
)
calendar_event = res.json() Response
{
"id": 200,
"ownerUserId": 87,
"title": "Customer Interview",
"description": "Curtus ars catena.",
"startAt": "2026-06-25T04:48:41.199Z",
"endAt": "2026-06-25T07:09:22.578Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [
91,
41,
39,
75,
124
],
"createdAt": "2026-03-16T14:05:47.504Z",
"updatedAt": "2026-03-23T22:02:27.407Z"
}