May
12
Tue
Sales Call
5:21 AM – 11:25 AM
Rooftop
Cogo nemo decens casso.
Overview
calendar-events / #459
5:21 AM – 11:25 AM
Rooftop
Cogo nemo decens casso.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/459" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/459" ); 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/459"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/459"
)
calendar_event = res.json() Response
{
"id": 459,
"ownerUserId": 187,
"title": "Sales Call",
"description": "Cogo nemo decens casso.",
"startAt": "2026-05-12T05:21:02.379Z",
"endAt": "2026-05-12T11:25:05.528Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
217,
3,
166
],
"createdAt": "2026-02-24T01:18:38.912Z",
"updatedAt": "2026-04-16T16:25:06.725Z"
}