Mar
16
Mon
Customer Interview
6:26 PM – 6:26 PM
Cafeteria
Congregatio ambulo ducimus voluptates.
Overview
calendar-events / #253
6:26 PM – 6:26 PM
Cafeteria
Congregatio ambulo ducimus voluptates.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/253" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/253" ); 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/253"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/253"
)
calendar_event = res.json() Response
{
"id": 253,
"ownerUserId": 109,
"title": "Customer Interview",
"description": "Congregatio ambulo ducimus voluptates.",
"startAt": "2026-03-16T18:26:41.262Z",
"endAt": "2026-03-17T18:26:41.262Z",
"isAllDay": true,
"location": "Cafeteria",
"attendeeUserIds": [],
"createdAt": "2026-04-09T04:39:18.350Z",
"updatedAt": "2026-04-10T02:20:28.526Z"
}