Apr
9
Thu
Architecture Review
9:35 AM – 1:50 PM
Defetiscor cohors eaque consuasor ancilla barba.
Overview
calendar-events / #213
9:35 AM – 1:50 PM
Defetiscor cohors eaque consuasor ancilla barba.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/213" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/213" ); 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/213"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/213"
)
calendar_event = res.json() Response
{
"id": 213,
"ownerUserId": 92,
"title": "Architecture Review",
"description": "Defetiscor cohors eaque consuasor ancilla barba.",
"startAt": "2026-04-09T09:35:02.320Z",
"endAt": "2026-04-09T13:50:51.447Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [],
"createdAt": "2026-04-03T14:09:34.849Z",
"updatedAt": "2026-04-07T01:31:46.989Z"
}