Jul
31
Fri
Design Critique
6:48 PM – 6:48 PM
Cafeteria
Denuncio constans condico acsi occaecati.
Overview
calendar-events / #434
6:48 PM – 6:48 PM
Cafeteria
Denuncio constans condico acsi occaecati.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/434" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/434" ); 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/434"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/434"
)
calendar_event = res.json() Response
{
"id": 434,
"ownerUserId": 178,
"title": "Design Critique",
"description": "Denuncio constans condico acsi occaecati.",
"startAt": "2026-07-31T18:48:33.452Z",
"endAt": "2026-08-01T18:48:33.452Z",
"isAllDay": true,
"location": "Cafeteria",
"attendeeUserIds": [
143,
106,
180,
195,
61
],
"createdAt": "2026-03-09T09:30:18.446Z",
"updatedAt": "2026-05-04T17:54:42.796Z"
}