Mar
10
Tue
Retrospective
6:05 AM – 1:51 PM
Patria ater urbs tenus.
Overview
calendar-events / #594
6:05 AM – 1:51 PM
Patria ater urbs tenus.
Retrospective
6:05 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/594" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/594" ); 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/594"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/594"
)
calendar_event = res.json() Response
{
"id": 594,
"ownerUserId": 247,
"title": "Retrospective",
"description": "Patria ater urbs tenus.",
"startAt": "2026-03-10T06:05:02.618Z",
"endAt": "2026-03-10T13:51:50.083Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [],
"createdAt": "2026-03-07T21:59:29.349Z",
"updatedAt": "2026-05-11T04:46:00.417Z"
}