Aug
15
Sat
Retrospective
5:54 AM – 12:51 PM
Zoom
Tantillus tendo careo verus apud dignissimos ultio pariatur.
Overview
calendar-events / #411
5:54 AM – 12:51 PM
Zoom
Tantillus tendo careo verus apud dignissimos ultio pariatur.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/411" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/411" ); 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/411"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/411"
)
calendar_event = res.json() Response
{
"id": 411,
"ownerUserId": 168,
"title": "Retrospective",
"description": "Tantillus tendo careo verus apud dignissimos ultio pariatur.",
"startAt": "2026-08-15T05:54:59.821Z",
"endAt": "2026-08-15T12:51:56.409Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
184,
103,
44,
203
],
"createdAt": "2026-04-20T06:15:26.751Z",
"updatedAt": "2026-04-26T10:29:40.541Z"
}