Jun
2
Tue
Retrospective
2:43 PM – 5:32 PM
Comitatus aperte qui.
Overview
calendar-events / #490
2:43 PM – 5:32 PM
Comitatus aperte qui.
Retrospective
2:43 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/490" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/490" ); 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/490"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/490"
)
calendar_event = res.json() Response
{
"id": 490,
"ownerUserId": 201,
"title": "Retrospective",
"description": "Comitatus aperte qui.",
"startAt": "2026-06-02T14:43:16.798Z",
"endAt": "2026-06-02T17:32:22.870Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
82,
97
],
"createdAt": "2026-05-15T03:00:21.354Z",
"updatedAt": "2026-05-15T12:34:44.171Z"
}