Jul
5
Sun
Demo Day
11:11 PM – 11:11 PM
Conference Room B
Terror titulus absconditus tergeo patrocinor anser solutio perferendis culpa atrocitas.
Overview
calendar-events / #83
11:11 PM – 11:11 PM
Conference Room B
Terror titulus absconditus tergeo patrocinor anser solutio perferendis culpa atrocitas.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/83" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/83" ); 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/83"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/83"
)
calendar_event = res.json() Response
{
"id": 83,
"ownerUserId": 36,
"title": "Demo Day",
"description": "Terror titulus absconditus tergeo patrocinor anser solutio perferendis culpa atrocitas.",
"startAt": "2026-07-05T23:11:48.419Z",
"endAt": "2026-07-06T23:11:48.419Z",
"isAllDay": true,
"location": "Conference Room B",
"attendeeUserIds": [
53
],
"createdAt": "2026-04-01T13:33:05.593Z",
"updatedAt": "2026-05-11T15:53:57.949Z"
}