Aug
1
Sat
Product Review
4:44 AM – 8:55 AM
Office - Floor 3
Alius corona suscipit sollers tot tabesco terror.
Overview
calendar-events / #27
4:44 AM – 8:55 AM
Office - Floor 3
Alius corona suscipit sollers tot tabesco terror.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/27" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/27" ); 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/27"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/27"
)
calendar_event = res.json() Response
{
"id": 27,
"ownerUserId": 13,
"title": "Product Review",
"description": "Alius corona suscipit sollers tot tabesco terror.",
"startAt": "2026-08-01T04:44:50.274Z",
"endAt": "2026-08-01T08:55:31.352Z",
"isAllDay": false,
"location": "Office - Floor 3",
"attendeeUserIds": [],
"createdAt": "2026-05-14T20:39:23.442Z",
"updatedAt": "2026-05-14T23:54:22.517Z"
}