Jun
5
Fri
Product Review
5:18 AM – 11:49 AM
Arguo verecundia tyrannus coniecto.
Overview
calendar-events / #182
5:18 AM – 11:49 AM
Arguo verecundia tyrannus coniecto.
Product Review
5:18 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/182" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/182" ); 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/182"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/182"
)
calendar_event = res.json() Response
{
"id": 182,
"ownerUserId": 79,
"title": "Product Review",
"description": "Arguo verecundia tyrannus coniecto.",
"startAt": "2026-06-05T05:18:56.393Z",
"endAt": "2026-06-05T11:49:22.642Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
192,
249,
74,
77
],
"createdAt": "2026-03-26T07:17:04.821Z",
"updatedAt": "2026-04-06T14:33:04.110Z"
}