Jun
29
Mon
Board Meeting
11:50 AM – 4:16 PM
Zoom
Varietas vulpes praesentium admiratio aestus.
Overview
calendar-events / #333
11:50 AM – 4:16 PM
Zoom
Varietas vulpes praesentium admiratio aestus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/333" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/333" ); 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/333"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/333"
)
calendar_event = res.json() Response
{
"id": 333,
"ownerUserId": 137,
"title": "Board Meeting",
"description": "Varietas vulpes praesentium admiratio aestus.",
"startAt": "2026-06-29T11:50:06.220Z",
"endAt": "2026-06-29T16:16:02.526Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [],
"createdAt": "2026-05-11T04:35:14.460Z",
"updatedAt": "2026-05-18T12:44:53.969Z"
}