Jul
31
Fri
Product Review
8:57 PM – 10:48 PM
Zoom
Curriculum commodo verto adflicto cado.
Overview
calendar-events / #509
8:57 PM – 10:48 PM
Zoom
Curriculum commodo verto adflicto cado.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/509" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/509" ); 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/509"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/509"
)
calendar_event = res.json() Response
{
"id": 509,
"ownerUserId": 212,
"title": "Product Review",
"description": "Curriculum commodo verto adflicto cado.",
"startAt": "2026-07-31T20:57:02.073Z",
"endAt": "2026-07-31T22:48:01.852Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
22,
34
],
"createdAt": "2026-04-27T03:06:08.725Z",
"updatedAt": "2026-05-04T23:26:38.044Z"
}