Mar
3
Tue
Demo Day
2:13 AM – 7:20 AM
Office - Floor 3
Amaritudo tenus possimus damno texo autem brevis tripudio clamo caveo.
Overview
calendar-events / #78
2:13 AM – 7:20 AM
Office - Floor 3
Amaritudo tenus possimus damno texo autem brevis tripudio clamo caveo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/78" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/78" ); 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/78"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/78"
)
calendar_event = res.json() Response
{
"id": 78,
"ownerUserId": 35,
"title": "Demo Day",
"description": "Amaritudo tenus possimus damno texo autem brevis tripudio clamo caveo.",
"startAt": "2026-03-03T02:13:18.046Z",
"endAt": "2026-03-03T07:20:14.505Z",
"isAllDay": false,
"location": "Office - Floor 3",
"attendeeUserIds": [
84,
118,
13,
12,
210
],
"createdAt": "2026-04-10T06:28:18.574Z",
"updatedAt": "2026-04-28T21:05:54.687Z"
}