Jun
15
Mon
Customer Interview
2:14 AM – 2:14 AM
Main Boardroom
Tergiversatio certe vulariter abscido creber uredo aestus commodo.
Overview
calendar-events / #597
2:14 AM – 2:14 AM
Main Boardroom
Tergiversatio certe vulariter abscido creber uredo aestus commodo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/597" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/597" ); 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/597"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/597"
)
calendar_event = res.json() Response
{
"id": 597,
"ownerUserId": 249,
"title": "Customer Interview",
"description": "Tergiversatio certe vulariter abscido creber uredo aestus commodo.",
"startAt": "2026-06-15T02:14:20.984Z",
"endAt": "2026-06-16T02:14:20.984Z",
"isAllDay": true,
"location": "Main Boardroom",
"attendeeUserIds": [
166,
139,
121
],
"createdAt": "2026-04-23T19:35:05.399Z",
"updatedAt": "2026-05-12T07:09:10.581Z"
}