Jun
7
Sun
Sales Call
3:47 PM – 8:38 PM
Cafeteria
Suspendo quo agnosco velociter crustulum optio calco.
Overview
calendar-events / #366
3:47 PM – 8:38 PM
Cafeteria
Suspendo quo agnosco velociter crustulum optio calco.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/366" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/366" ); 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/366"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/366"
)
calendar_event = res.json() Response
{
"id": 366,
"ownerUserId": 150,
"title": "Sales Call",
"description": "Suspendo quo agnosco velociter crustulum optio calco.",
"startAt": "2026-06-07T15:47:55.888Z",
"endAt": "2026-06-07T20:38:39.503Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [
49,
61,
88,
9,
101
],
"createdAt": "2026-03-09T08:32:27.764Z",
"updatedAt": "2026-04-20T23:26:24.934Z"
}