Jun
14
Sun
Demo Day
1:32 PM – 4:09 PM
Conference Room B
Solvo sto sumo sponte.
Overview
calendar-events / #7
1:32 PM – 4:09 PM
Conference Room B
Solvo sto sumo sponte.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/7" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/7" ); 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/7"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/7"
)
calendar_event = res.json() Response
{
"id": 7,
"ownerUserId": 2,
"title": "Demo Day",
"description": "Solvo sto sumo sponte.",
"startAt": "2026-06-14T13:32:25.065Z",
"endAt": "2026-06-14T16:09:58.390Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [
83,
117,
93
],
"createdAt": "2026-03-26T10:37:24.299Z",
"updatedAt": "2026-04-11T04:11:47.799Z"
}