Apr
12
Sun
Retrospective
3:03 AM – 4:51 AM
Subito decens demulceo bos nulla arbustum audio.
Overview
calendar-events / #483
3:03 AM – 4:51 AM
Subito decens demulceo bos nulla arbustum audio.
Retrospective
3:03 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/483" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/483" ); 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/483"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/483"
)
calendar_event = res.json() Response
{
"id": 483,
"ownerUserId": 197,
"title": "Retrospective",
"description": "Subito decens demulceo bos nulla arbustum audio.",
"startAt": "2026-04-12T03:03:48.893Z",
"endAt": "2026-04-12T04:51:37.954Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
78,
159
],
"createdAt": "2026-03-17T20:35:13.492Z",
"updatedAt": "2026-05-19T22:17:17.306Z"
}