Apr
26
Sun
Strategy Workshop
12:36 PM – 7:00 PM
Microsoft Teams
Quisquam careo crinis derelinquo officiis repudiandae tener abduco tamdiu aer.
Overview
calendar-events / #491
12:36 PM – 7:00 PM
Microsoft Teams
Quisquam careo crinis derelinquo officiis repudiandae tener abduco tamdiu aer.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/491" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/491" ); 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/491"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/491"
)
calendar_event = res.json() Response
{
"id": 491,
"ownerUserId": 201,
"title": "Strategy Workshop",
"description": "Quisquam careo crinis derelinquo officiis repudiandae tener abduco tamdiu aer.",
"startAt": "2026-04-26T12:36:40.582Z",
"endAt": "2026-04-26T19:00:28.126Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [],
"createdAt": "2026-03-26T09:57:37.928Z",
"updatedAt": "2026-05-10T16:44:33.656Z"
}