May
1
Fri
Customer Interview
10:40 PM – 12:31 AM
Conference Room B
Thesis non cenaculum acervus ab asporto.
Overview
calendar-events / #538
10:40 PM – 12:31 AM
Conference Room B
Thesis non cenaculum acervus ab asporto.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/538" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/538" ); 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/538"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/538"
)
calendar_event = res.json() Response
{
"id": 538,
"ownerUserId": 224,
"title": "Customer Interview",
"description": "Thesis non cenaculum acervus ab asporto.",
"startAt": "2026-05-01T22:40:37.674Z",
"endAt": "2026-05-02T00:31:48.927Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [],
"createdAt": "2026-03-30T20:14:22.325Z",
"updatedAt": "2026-04-09T01:28:13.258Z"
}