Jun
14
Sun
Strategy Workshop
1:01 AM – 7:12 AM
Amiculum vos suscipit iure una.
Overview
calendar-events / #525
1:01 AM – 7:12 AM
Amiculum vos suscipit iure una.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/525" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/525" ); 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/525"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/525"
)
calendar_event = res.json() Response
{
"id": 525,
"ownerUserId": 219,
"title": "Strategy Workshop",
"description": "Amiculum vos suscipit iure una.",
"startAt": "2026-06-14T01:01:29.090Z",
"endAt": "2026-06-14T07:12:46.703Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
86,
98,
85,
72
],
"createdAt": "2026-04-04T07:23:49.175Z",
"updatedAt": "2026-05-08T07:35:25.801Z"
}