May
18
Mon
Demo Day
8:05 PM – 9:35 PM
Office - Floor 3
Tego accedo verto color tenetur caelestis arceo.
Overview
calendar-events / #516
8:05 PM – 9:35 PM
Office - Floor 3
Tego accedo verto color tenetur caelestis arceo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/516" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/516" ); 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/516"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/516"
)
calendar_event = res.json() Response
{
"id": 516,
"ownerUserId": 215,
"title": "Demo Day",
"description": "Tego accedo verto color tenetur caelestis arceo.",
"startAt": "2026-05-18T20:05:22.592Z",
"endAt": "2026-05-18T21:35:42.723Z",
"isAllDay": false,
"location": "Office - Floor 3",
"attendeeUserIds": [
78,
112,
219,
93
],
"createdAt": "2026-03-26T09:52:51.425Z",
"updatedAt": "2026-05-14T16:44:46.007Z"
}