Aug
13
Thu
Retrospective
4:27 AM – 10:45 AM
Cafeteria
Quis barba audax thema tabgo delego cornu civis conspergo totus.
Overview
calendar-events / #71
4:27 AM – 10:45 AM
Cafeteria
Quis barba audax thema tabgo delego cornu civis conspergo totus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/71" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/71" ); 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/71"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/71"
)
calendar_event = res.json() Response
{
"id": 71,
"ownerUserId": 32,
"title": "Retrospective",
"description": "Quis barba audax thema tabgo delego cornu civis conspergo totus.",
"startAt": "2026-08-13T04:27:00.492Z",
"endAt": "2026-08-13T10:45:33.405Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [
26,
215
],
"createdAt": "2026-04-02T11:28:56.348Z",
"updatedAt": "2026-04-14T10:51:44.800Z"
}