Aug
9
Sun
Demo Day
9:31 PM – 2:58 AM
Cafeteria
Iure harum volutabrum adhuc blanditiis cibus admoveo tepesco.
Overview
calendar-events / #465
9:31 PM – 2:58 AM
Cafeteria
Iure harum volutabrum adhuc blanditiis cibus admoveo tepesco.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/465" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/465" ); 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/465"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/465"
)
calendar_event = res.json() Response
{
"id": 465,
"ownerUserId": 189,
"title": "Demo Day",
"description": "Iure harum volutabrum adhuc blanditiis cibus admoveo tepesco.",
"startAt": "2026-08-09T21:31:20.073Z",
"endAt": "2026-08-10T02:58:59.230Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [
51,
91,
212,
35,
236
],
"createdAt": "2026-04-05T01:59:42.071Z",
"updatedAt": "2026-04-12T22:42:20.533Z"
}