Jun
5
Fri
Demo Day
8:03 AM – 1:44 PM
Vere coniuratio cupiditas usitas centum venustas vigor damnatio decet.
Overview
calendar-events / #3
8:03 AM – 1:44 PM
Vere coniuratio cupiditas usitas centum venustas vigor damnatio decet.
Demo Day
8:03 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/3" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/3" ); 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/3"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/3"
)
calendar_event = res.json() Response
{
"id": 3,
"ownerUserId": 1,
"title": "Demo Day",
"description": "Vere coniuratio cupiditas usitas centum venustas vigor damnatio decet.",
"startAt": "2026-06-05T08:03:53.462Z",
"endAt": "2026-06-05T13:44:34.646Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
158,
98,
28
],
"createdAt": "2026-03-23T18:06:51.098Z",
"updatedAt": "2026-04-02T08:11:15.367Z"
}