Apr
1
Wed
Sales Call
1:24 PM – 1:24 PM
Conference Room A
Thesis contego apostolus cubitum cimentarius clibanus.
Overview
calendar-events / #173
1:24 PM – 1:24 PM
Conference Room A
Thesis contego apostolus cubitum cimentarius clibanus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/173" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/173" ); 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/173"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/173"
)
calendar_event = res.json() Response
{
"id": 173,
"ownerUserId": 75,
"title": "Sales Call",
"description": "Thesis contego apostolus cubitum cimentarius clibanus.",
"startAt": "2026-04-01T13:24:55.357Z",
"endAt": "2026-04-02T13:24:55.357Z",
"isAllDay": true,
"location": "Conference Room A",
"attendeeUserIds": [
179
],
"createdAt": "2026-04-01T13:54:18.479Z",
"updatedAt": "2026-04-07T22:55:41.843Z"
}