Jun
14
Sun
Board Meeting
3:45 AM – 3:45 AM
Microsoft Teams
Maiores vado alveus adiuvo vomer tenuis cerno sodalitas calcar.
Overview
calendar-events / #10
3:45 AM – 3:45 AM
Microsoft Teams
Maiores vado alveus adiuvo vomer tenuis cerno sodalitas calcar.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/10" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/10" ); 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/10"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/10"
)
calendar_event = res.json() Response
{
"id": 10,
"ownerUserId": 4,
"title": "Board Meeting",
"description": "Maiores vado alveus adiuvo vomer tenuis cerno sodalitas calcar.",
"startAt": "2026-06-14T03:45:04.127Z",
"endAt": "2026-06-15T03:45:04.127Z",
"isAllDay": true,
"location": "Microsoft Teams",
"attendeeUserIds": [
72
],
"createdAt": "2026-05-14T20:46:08.269Z",
"updatedAt": "2026-05-20T17:21:26.148Z"
}