May
21
Thu
Product Review
12:11 AM – 7:14 AM
Rooftop
Depono subiungo infit occaecati veritas aranea blanditiis.
Overview
calendar-events / #365
12:11 AM – 7:14 AM
Rooftop
Depono subiungo infit occaecati veritas aranea blanditiis.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/365" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/365" ); 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/365"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/365"
)
calendar_event = res.json() Response
{
"id": 365,
"ownerUserId": 149,
"title": "Product Review",
"description": "Depono subiungo infit occaecati veritas aranea blanditiis.",
"startAt": "2026-05-21T00:11:49.210Z",
"endAt": "2026-05-21T07:14:18.549Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
104,
215,
83,
124,
226
],
"createdAt": "2026-02-28T15:26:19.919Z",
"updatedAt": "2026-03-18T14:30:24.944Z"
}