Mar
15
Sun
Product Review
9:47 PM – 9:47 PM
Conference Room A
Baiulus atavus civitas sursum.
Overview
calendar-events / #170
9:47 PM – 9:47 PM
Conference Room A
Baiulus atavus civitas sursum.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/170" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/170" ); 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/170"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/170"
)
calendar_event = res.json() Response
{
"id": 170,
"ownerUserId": 73,
"title": "Product Review",
"description": "Baiulus atavus civitas sursum.",
"startAt": "2026-03-15T21:47:47.818Z",
"endAt": "2026-03-16T21:47:47.818Z",
"isAllDay": true,
"location": "Conference Room A",
"attendeeUserIds": [
17
],
"createdAt": "2026-02-27T00:27:18.644Z",
"updatedAt": "2026-05-09T04:48:05.455Z"
}