Jul
13
Mon
Demo Day
2:56 AM – 4:41 AM
Conference Room B
Cicuta harum aliquid callide bestia quisquam ratione aranea.
Overview
calendar-events / #498
2:56 AM – 4:41 AM
Conference Room B
Cicuta harum aliquid callide bestia quisquam ratione aranea.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/498" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/498" ); 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/498"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/498"
)
calendar_event = res.json() Response
{
"id": 498,
"ownerUserId": 205,
"title": "Demo Day",
"description": "Cicuta harum aliquid callide bestia quisquam ratione aranea.",
"startAt": "2026-07-13T02:56:48.578Z",
"endAt": "2026-07-13T04:41:14.773Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [
113
],
"createdAt": "2026-05-10T03:21:15.306Z",
"updatedAt": "2026-05-12T10:06:21.770Z"
}