Mar
16
Mon
Design Critique
11:36 AM – 2:44 PM
Zoom
Sum similique decumbo curia admiratio sponte fugit.
Overview
calendar-events / #57
11:36 AM – 2:44 PM
Zoom
Sum similique decumbo curia admiratio sponte fugit.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/57" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/57" ); 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/57"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/57"
)
calendar_event = res.json() Response
{
"id": 57,
"ownerUserId": 27,
"title": "Design Critique",
"description": "Sum similique decumbo curia admiratio sponte fugit.",
"startAt": "2026-03-16T11:36:16.492Z",
"endAt": "2026-03-16T14:44:16.081Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
30,
134,
142,
163
],
"createdAt": "2026-03-25T02:55:28.819Z",
"updatedAt": "2026-03-30T16:26:11.897Z"
}