Jun
8
Mon
Retrospective
3:46 PM – 3:46 PM
Amplitudo doloremque certe cicuta maiores.
Overview
calendar-events / #133
3:46 PM – 3:46 PM
Amplitudo doloremque certe cicuta maiores.
Retrospective
3:46 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/133" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/133" ); 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/133"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/133"
)
calendar_event = res.json() Response
{
"id": 133,
"ownerUserId": 55,
"title": "Retrospective",
"description": "Amplitudo doloremque certe cicuta maiores.",
"startAt": "2026-06-08T15:46:34.927Z",
"endAt": "2026-06-09T15:46:34.927Z",
"isAllDay": true,
"location": null,
"attendeeUserIds": [
82,
2,
65,
40
],
"createdAt": "2026-04-12T15:42:01.989Z",
"updatedAt": "2026-05-03T02:14:34.054Z"
}