Jun
10
Wed
Board Meeting
7:49 PM – 7:49 PM
Microsoft Teams
Aperiam dolore tertius aro comedo surgo animi.
Overview
calendar-events / #263
7:49 PM – 7:49 PM
Microsoft Teams
Aperiam dolore tertius aro comedo surgo animi.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/263" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/263" ); 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/263"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/263"
)
calendar_event = res.json() Response
{
"id": 263,
"ownerUserId": 112,
"title": "Board Meeting",
"description": "Aperiam dolore tertius aro comedo surgo animi.",
"startAt": "2026-06-10T19:49:16.942Z",
"endAt": "2026-06-11T19:49:16.942Z",
"isAllDay": true,
"location": "Microsoft Teams",
"attendeeUserIds": [],
"createdAt": "2026-02-21T23:09:48.514Z",
"updatedAt": "2026-05-06T13:16:13.695Z"
}