Jun
4
Thu
Design Critique
5:32 PM – 5:32 PM
Zoom
Aperio verbum tum convoco argentum taceo decumbo tendo acies aranea.
Overview
calendar-events / #267
5:32 PM – 5:32 PM
Zoom
Aperio verbum tum convoco argentum taceo decumbo tendo acies aranea.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/267" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/267" ); 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/267"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/267"
)
calendar_event = res.json() Response
{
"id": 267,
"ownerUserId": 113,
"title": "Design Critique",
"description": "Aperio verbum tum convoco argentum taceo decumbo tendo acies aranea.",
"startAt": "2026-06-04T17:32:45.097Z",
"endAt": "2026-06-05T17:32:45.097Z",
"isAllDay": true,
"location": "Zoom",
"attendeeUserIds": [
244,
179
],
"createdAt": "2026-03-19T18:18:35.000Z",
"updatedAt": "2026-04-03T07:25:23.028Z"
}