Apr
23
Thu
Design Critique
1:09 AM – 5:27 AM
Conference Room B
Blandior vicissitudo color.
Overview
calendar-events / #581
1:09 AM – 5:27 AM
Conference Room B
Blandior vicissitudo color.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/581" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/581" ); 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/581"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/581"
)
calendar_event = res.json() Response
{
"id": 581,
"ownerUserId": 241,
"title": "Design Critique",
"description": "Blandior vicissitudo color.",
"startAt": "2026-04-23T01:09:01.761Z",
"endAt": "2026-04-23T05:27:52.860Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [
8,
56
],
"createdAt": "2026-05-06T10:37:40.353Z",
"updatedAt": "2026-05-16T11:31:30.521Z"
}