May
18
Mon
Strategy Workshop
9:41 AM – 5:23 PM
Conference Room B
Tergo illum demoror volup vae candidus admitto tamen deprimo.
Overview
calendar-events / #420
9:41 AM – 5:23 PM
Conference Room B
Tergo illum demoror volup vae candidus admitto tamen deprimo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/420" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/420" ); 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/420"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/420"
)
calendar_event = res.json() Response
{
"id": 420,
"ownerUserId": 173,
"title": "Strategy Workshop",
"description": "Tergo illum demoror volup vae candidus admitto tamen deprimo.",
"startAt": "2026-05-18T09:41:11.502Z",
"endAt": "2026-05-18T17:23:09.726Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [
75
],
"createdAt": "2026-05-14T13:44:55.438Z",
"updatedAt": "2026-05-16T05:07:20.816Z"
}