Jul
9
Thu
Product Review
1:26 AM – 4:01 AM
Conference Room A
Asperiores debeo super conforto cervus.
Overview
calendar-events / #24
1:26 AM – 4:01 AM
Conference Room A
Asperiores debeo super conforto cervus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/24" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/24" ); 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/24"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/24"
)
calendar_event = res.json() Response
{
"id": 24,
"ownerUserId": 11,
"title": "Product Review",
"description": "Asperiores debeo super conforto cervus.",
"startAt": "2026-07-09T01:26:35.194Z",
"endAt": "2026-07-09T04:01:13.641Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [
121,
249,
193,
144
],
"createdAt": "2026-04-14T16:56:32.825Z",
"updatedAt": "2026-05-13T14:48:18.586Z"
}