May
10
Sun
Design Critique
11:30 AM – 11:30 AM
Microsoft Teams
Vinum cresco solum.
Overview
calendar-events / #202
11:30 AM – 11:30 AM
Microsoft Teams
Vinum cresco solum.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/202" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/202" ); 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/202"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/202"
)
calendar_event = res.json() Response
{
"id": 202,
"ownerUserId": 88,
"title": "Design Critique",
"description": "Vinum cresco solum.",
"startAt": "2026-05-10T11:30:52.650Z",
"endAt": "2026-05-11T11:30:52.650Z",
"isAllDay": true,
"location": "Microsoft Teams",
"attendeeUserIds": [
152,
93,
52
],
"createdAt": "2026-03-06T05:03:56.373Z",
"updatedAt": "2026-03-08T12:47:42.037Z"
}