Apr
21
Tue
Product Review
1:00 AM – 5:58 AM
Microsoft Teams
Nisi auxilium ullus tracto video cado creptio.
Overview
calendar-events / #181
1:00 AM – 5:58 AM
Microsoft Teams
Nisi auxilium ullus tracto video cado creptio.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/181" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/181" ); 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/181"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/181"
)
calendar_event = res.json() Response
{
"id": 181,
"ownerUserId": 79,
"title": "Product Review",
"description": "Nisi auxilium ullus tracto video cado creptio.",
"startAt": "2026-04-21T01:00:15.264Z",
"endAt": "2026-04-21T05:58:32.304Z",
"isAllDay": false,
"location": "Microsoft Teams",
"attendeeUserIds": [
237,
50,
174,
240
],
"createdAt": "2026-03-02T18:09:32.555Z",
"updatedAt": "2026-03-14T11:26:32.089Z"
}