Aug
8
Sat
Sales Call
4:51 AM – 8:15 AM
Rooftop
Cicuta aveho aegrus vinco cauda thorax.
Overview
calendar-events / #460
4:51 AM – 8:15 AM
Rooftop
Cicuta aveho aegrus vinco cauda thorax.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/460" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/460" ); 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/460"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/460"
)
calendar_event = res.json() Response
{
"id": 460,
"ownerUserId": 188,
"title": "Sales Call",
"description": "Cicuta aveho aegrus vinco cauda thorax.",
"startAt": "2026-08-08T04:51:32.709Z",
"endAt": "2026-08-08T08:15:38.313Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
220,
112,
190,
205,
198
],
"createdAt": "2026-03-23T00:30:30.405Z",
"updatedAt": "2026-04-21T21:08:16.815Z"
}