Jul
3
Fri
Retrospective
9:15 PM – 9:15 PM
Conference Room A
Thalassinus quisquam desipio approbo appello vestigium tenuis.
Overview
calendar-events / #110
9:15 PM – 9:15 PM
Conference Room A
Thalassinus quisquam desipio approbo appello vestigium tenuis.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/110" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/110" ); 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/110"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/110"
)
calendar_event = res.json() Response
{
"id": 110,
"ownerUserId": 46,
"title": "Retrospective",
"description": "Thalassinus quisquam desipio approbo appello vestigium tenuis.",
"startAt": "2026-07-03T21:15:03.022Z",
"endAt": "2026-07-04T21:15:03.022Z",
"isAllDay": true,
"location": "Conference Room A",
"attendeeUserIds": [],
"createdAt": "2026-04-02T15:32:57.717Z",
"updatedAt": "2026-04-10T00:48:48.469Z"
}