Apr
15
Wed
Design Critique
1:33 AM – 7:40 AM
Cafeteria
Celo calcar cattus ulterius audio distinctio antea uter officiis.
Overview
calendar-events / #235
1:33 AM – 7:40 AM
Cafeteria
Celo calcar cattus ulterius audio distinctio antea uter officiis.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/235" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/235" ); 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/235"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/235"
)
calendar_event = res.json() Response
{
"id": 235,
"ownerUserId": 100,
"title": "Design Critique",
"description": "Celo calcar cattus ulterius audio distinctio antea uter officiis.",
"startAt": "2026-04-15T01:33:13.470Z",
"endAt": "2026-04-15T07:40:34.090Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [],
"createdAt": "2026-04-28T02:21:13.757Z",
"updatedAt": "2026-05-04T19:01:27.751Z"
}