Aug
18
Tue
Design Critique
11:51 AM – 6:48 PM
Zoom
Defaeco undique ventito.
Overview
calendar-events / #461
11:51 AM – 6:48 PM
Zoom
Defaeco undique ventito.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/461" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/461" ); 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/461"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/461"
)
calendar_event = res.json() Response
{
"id": 461,
"ownerUserId": 188,
"title": "Design Critique",
"description": "Defaeco undique ventito.",
"startAt": "2026-08-18T11:51:48.655Z",
"endAt": "2026-08-18T18:48:02.103Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
13,
86,
221
],
"createdAt": "2026-03-13T21:20:14.900Z",
"updatedAt": "2026-03-27T05:55:11.569Z"
}