Aug
14
Fri
Customer Interview
5:05 PM – 5:05 PM
Adipisci damnatio baiulus callide ubi centum asporto.
Overview
calendar-events / #499
5:05 PM – 5:05 PM
Adipisci damnatio baiulus callide ubi centum asporto.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/499" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/499" ); 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/499"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/499"
)
calendar_event = res.json() Response
{
"id": 499,
"ownerUserId": 206,
"title": "Customer Interview",
"description": "Adipisci damnatio baiulus callide ubi centum asporto.",
"startAt": "2026-08-14T17:05:02.952Z",
"endAt": "2026-08-15T17:05:02.952Z",
"isAllDay": true,
"location": null,
"attendeeUserIds": [
233
],
"createdAt": "2026-04-14T07:07:29.908Z",
"updatedAt": "2026-04-18T04:16:22.303Z"
}