Mar
17
Tue
Retrospective
4:33 AM – 9:37 AM
Tot absum cicuta vilitas arbustum.
Overview
calendar-events / #269
4:33 AM – 9:37 AM
Tot absum cicuta vilitas arbustum.
Retrospective
4:33 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/269" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/269" ); 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/269"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/269"
)
calendar_event = res.json() Response
{
"id": 269,
"ownerUserId": 114,
"title": "Retrospective",
"description": "Tot absum cicuta vilitas arbustum.",
"startAt": "2026-03-17T04:33:39.006Z",
"endAt": "2026-03-17T09:37:11.253Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
247,
137,
37
],
"createdAt": "2026-03-17T03:40:10.763Z",
"updatedAt": "2026-03-29T02:22:38.104Z"
}