Apr
26
Sun
Quarterly Review
12:08 PM – 2:13 PM
Microsoft Teams
Debeo cilicium depulso solvo.
Overview
calendar-events / #116
12:08 PM – 2:13 PM
Microsoft Teams
Debeo cilicium depulso solvo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/116" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/116" ); 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/116"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/116"
)
calendar_event = res.json() Response
{
"id": 116,
"ownerUserId": 48,
"title": "Quarterly Review",
"description": "Debeo cilicium depulso solvo.",
"startAt": "2026-04-26T12:08:32.021Z",
"endAt": "2026-04-26T14:13:10.814Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [],
"createdAt": "2026-03-14T12:04:19.487Z",
"updatedAt": "2026-03-29T03:14:48.960Z"
}