Aug
12
Wed
Product Review
2:10 AM – 5:49 AM
Cafeteria
Tenetur colligo ceno tam usus fuga cunae decumbo.
Overview
calendar-events / #557
2:10 AM – 5:49 AM
Cafeteria
Tenetur colligo ceno tam usus fuga cunae decumbo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/557" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/557" ); 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/557"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/557"
)
calendar_event = res.json() Response
{
"id": 557,
"ownerUserId": 233,
"title": "Product Review",
"description": "Tenetur colligo ceno tam usus fuga cunae decumbo.",
"startAt": "2026-08-12T02:10:33.574Z",
"endAt": "2026-08-12T05:49:26.148Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [],
"createdAt": "2026-03-31T19:56:59.887Z",
"updatedAt": "2026-04-10T14:53:51.489Z"
}