Jun
4
Thu
Demo Day
9:02 PM – 11:22 PM
Cafeteria
Voro attonbitus cohibeo.
Overview
calendar-events / #455
9:02 PM – 11:22 PM
Cafeteria
Voro attonbitus cohibeo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/455" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/455" ); 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/455"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/455"
)
calendar_event = res.json() Response
{
"id": 455,
"ownerUserId": 186,
"title": "Demo Day",
"description": "Voro attonbitus cohibeo.",
"startAt": "2026-06-04T21:02:41.989Z",
"endAt": "2026-06-04T23:22:44.589Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [
203,
137,
13,
114,
62
],
"createdAt": "2026-03-05T11:55:53.637Z",
"updatedAt": "2026-05-21T06:16:36.396Z"
}