May
10
Sun
Board Meeting
8:17 AM – 11:50 AM
Conference Room A
Campana arca vespillo sopor conservo terreo debilito.
Overview
calendar-events / #505
8:17 AM – 11:50 AM
Conference Room A
Campana arca vespillo sopor conservo terreo debilito.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/505" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/505" ); 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/505"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/505"
)
calendar_event = res.json() Response
{
"id": 505,
"ownerUserId": 210,
"title": "Board Meeting",
"description": "Campana arca vespillo sopor conservo terreo debilito.",
"startAt": "2026-05-10T08:17:29.233Z",
"endAt": "2026-05-10T11:50:27.236Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [
116
],
"createdAt": "2026-05-01T14:21:54.267Z",
"updatedAt": "2026-05-14T22:09:37.588Z"
}