Jul
6
Mon
Customer Interview
12:23 PM – 6:48 PM
Suggero necessitatibus arca.
Overview
calendar-events / #427
12:23 PM – 6:48 PM
Suggero necessitatibus arca.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/427" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/427" ); 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/427"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/427"
)
calendar_event = res.json() Response
{
"id": 427,
"ownerUserId": 175,
"title": "Customer Interview",
"description": "Suggero necessitatibus arca.",
"startAt": "2026-07-06T12:23:47.970Z",
"endAt": "2026-07-06T18:48:54.118Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [],
"createdAt": "2026-05-20T02:45:50.434Z",
"updatedAt": "2026-05-21T03:05:33.003Z"
}