Apr
1
Wed
Strategy Workshop
10:05 PM – 10:05 PM
Conference Room A
Corrigo eveniet sulum defaeco thesaurus decens aspernatur vito templum.
Overview
calendar-events / #46
10:05 PM – 10:05 PM
Conference Room A
Corrigo eveniet sulum defaeco thesaurus decens aspernatur vito templum.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/46" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/46" ); 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/46"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/46"
)
calendar_event = res.json() Response
{
"id": 46,
"ownerUserId": 23,
"title": "Strategy Workshop",
"description": "Corrigo eveniet sulum defaeco thesaurus decens aspernatur vito templum.",
"startAt": "2026-04-01T22:05:53.159Z",
"endAt": "2026-04-02T22:05:53.159Z",
"isAllDay": true,
"location": "Conference Room A",
"attendeeUserIds": [
146,
124,
73,
89,
150
],
"createdAt": "2026-02-22T17:03:10.887Z",
"updatedAt": "2026-03-16T04:08:41.731Z"
}