Jul
23
Thu
Retrospective
4:37 PM – 5:39 PM
Avaritia dedico corrigo voco sumo tenax dignissimos debeo.
Overview
calendar-events / #450
4:37 PM – 5:39 PM
Avaritia dedico corrigo voco sumo tenax dignissimos debeo.
Retrospective
4:37 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/450" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/450" ); 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/450"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/450"
)
calendar_event = res.json() Response
{
"id": 450,
"ownerUserId": 184,
"title": "Retrospective",
"description": "Avaritia dedico corrigo voco sumo tenax dignissimos debeo.",
"startAt": "2026-07-23T16:37:17.922Z",
"endAt": "2026-07-23T17:39:10.732Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
55
],
"createdAt": "2026-03-12T09:06:32.040Z",
"updatedAt": "2026-05-06T02:45:09.043Z"
}