Mar
18
Wed
Architecture Review
5:51 AM – 7:02 AM
Microsoft Teams
Virgo astrum cariosus conor callide.
Overview
calendar-events / #438
5:51 AM – 7:02 AM
Microsoft Teams
Virgo astrum cariosus conor callide.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/438" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/438" ); 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/438"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/438"
)
calendar_event = res.json() Response
{
"id": 438,
"ownerUserId": 179,
"title": "Architecture Review",
"description": "Virgo astrum cariosus conor callide.",
"startAt": "2026-03-18T05:51:34.751Z",
"endAt": "2026-03-18T07:02:29.935Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [],
"createdAt": "2026-03-18T16:14:38.641Z",
"updatedAt": "2026-04-13T17:20:42.604Z"
}