Aug
17
Mon
Product Review
7:10 AM – 12:54 PM
Conference Room B
Canonicus aduro carus conscendo absque altus deleniti soleo quasi.
Overview
calendar-events / #291
7:10 AM – 12:54 PM
Conference Room B
Canonicus aduro carus conscendo absque altus deleniti soleo quasi.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/291" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/291" ); 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/291"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/291"
)
calendar_event = res.json() Response
{
"id": 291,
"ownerUserId": 123,
"title": "Product Review",
"description": "Canonicus aduro carus conscendo absque altus deleniti soleo quasi.",
"startAt": "2026-08-17T07:10:12.187Z",
"endAt": "2026-08-17T12:54:25.746Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [
1,
207
],
"createdAt": "2026-02-27T10:56:04.324Z",
"updatedAt": "2026-05-20T04:48:20.761Z"
}