Jul
10
Fri
Product Review
4:44 PM – 10:20 PM
Google Meet
Contra rerum callide vos accusamus adstringo saepe cultellus.
Overview
calendar-events / #553
4:44 PM – 10:20 PM
Google Meet
Contra rerum callide vos accusamus adstringo saepe cultellus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/553" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/553" ); 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/553"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/553"
)
calendar_event = res.json() Response
{
"id": 553,
"ownerUserId": 231,
"title": "Product Review",
"description": "Contra rerum callide vos accusamus adstringo saepe cultellus.",
"startAt": "2026-07-10T16:44:21.293Z",
"endAt": "2026-07-10T22:20:57.701Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
239,
136,
24,
177,
156
],
"createdAt": "2026-05-02T06:37:27.388Z",
"updatedAt": "2026-05-21T09:50:35.876Z"
}