Jul
10
Fri
Customer Interview
10:57 PM – 10:57 PM
Conference Room A
Vita caelestis accedo nulla amplitudo atrox avaritia utroque tristis.
Overview
calendar-events / #5
10:57 PM – 10:57 PM
Conference Room A
Vita caelestis accedo nulla amplitudo atrox avaritia utroque tristis.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/5" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/5" ); 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/5"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/5"
)
calendar_event = res.json() Response
{
"id": 5,
"ownerUserId": 2,
"title": "Customer Interview",
"description": "Vita caelestis accedo nulla amplitudo atrox avaritia utroque tristis.",
"startAt": "2026-07-10T22:57:15.641Z",
"endAt": "2026-07-11T22:57:15.641Z",
"isAllDay": true,
"location": "Conference Room A",
"attendeeUserIds": [
147,
121,
245
],
"createdAt": "2026-05-09T13:10:35.865Z",
"updatedAt": "2026-05-19T09:02:08.425Z"
}