Feb
28
Sat
Retrospective
7:43 AM – 7:43 AM
Ago tepesco acerbitas.
Overview
calendar-events / #539
7:43 AM – 7:43 AM
Ago tepesco acerbitas.
Retrospective
7:43 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/539" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/539" ); 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/539"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/539"
)
calendar_event = res.json() Response
{
"id": 539,
"ownerUserId": 225,
"title": "Retrospective",
"description": "Ago tepesco acerbitas.",
"startAt": "2026-02-28T07:43:09.850Z",
"endAt": "2026-03-01T07:43:09.850Z",
"isAllDay": true,
"location": null,
"attendeeUserIds": [],
"createdAt": "2026-03-06T07:48:44.462Z",
"updatedAt": "2026-05-14T13:22:21.895Z"
}