Jul
7
Tue
Customer Interview
4:56 PM – 9:38 PM
Google Meet
Vociferor vespillo substantia suffragium arca.
Overview
calendar-events / #495
4:56 PM – 9:38 PM
Google Meet
Vociferor vespillo substantia suffragium arca.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/495" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/495" ); 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/495"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/495"
)
calendar_event = res.json() Response
{
"id": 495,
"ownerUserId": 203,
"title": "Customer Interview",
"description": "Vociferor vespillo substantia suffragium arca.",
"startAt": "2026-07-07T16:56:28.780Z",
"endAt": "2026-07-07T21:38:01.753Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
234,
61,
46,
48,
39
],
"createdAt": "2026-04-11T00:31:10.459Z",
"updatedAt": "2026-05-07T06:43:56.102Z"
}