Mar
9
Mon
Demo Day
10:06 PM – 4:27 AM
Zoom
Depono alo cupiditas non ab advoco.
Overview
calendar-events / #218
10:06 PM – 4:27 AM
Zoom
Depono alo cupiditas non ab advoco.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/218" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/218" ); 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/218"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/218"
)
calendar_event = res.json() Response
{
"id": 218,
"ownerUserId": 94,
"title": "Demo Day",
"description": "Depono alo cupiditas non ab advoco.",
"startAt": "2026-03-09T22:06:41.290Z",
"endAt": "2026-03-10T04:27:11.979Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [],
"createdAt": "2026-04-30T05:03:50.324Z",
"updatedAt": "2026-05-07T12:19:26.412Z"
}