Mar
29
Sun
Budget Review
8:54 AM – 10:57 AM
Microsoft Teams
Commodo corrumpo vestigium validus surgo bardus.
Overview
calendar-events / #154
8:54 AM – 10:57 AM
Microsoft Teams
Commodo corrumpo vestigium validus surgo bardus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/154" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/154" ); 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/154"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/154"
)
calendar_event = res.json() Response
{
"id": 154,
"ownerUserId": 66,
"title": "Budget Review",
"description": "Commodo corrumpo vestigium validus surgo bardus.",
"startAt": "2026-03-29T08:54:38.085Z",
"endAt": "2026-03-29T10:57:44.954Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [
179,
123,
199
],
"createdAt": "2026-03-21T16:23:29.693Z",
"updatedAt": "2026-05-21T19:20:07.053Z"
}