Jul
16
Thu
Retrospective
9:44 PM – 11:49 PM
Main Boardroom
Terebro vomito texo sumptus depromo curiositas perspiciatis corroboro vorago.
Overview
calendar-events / #364
9:44 PM – 11:49 PM
Main Boardroom
Terebro vomito texo sumptus depromo curiositas perspiciatis corroboro vorago.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/364" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/364" ); 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/364"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/364"
)
calendar_event = res.json() Response
{
"id": 364,
"ownerUserId": 149,
"title": "Retrospective",
"description": "Terebro vomito texo sumptus depromo curiositas perspiciatis corroboro vorago.",
"startAt": "2026-07-16T21:44:34.913Z",
"endAt": "2026-07-16T23:49:02.603Z",
"isAllDay": false,
"location": "Main Boardroom",
"attendeeUserIds": [
124
],
"createdAt": "2026-04-11T08:15:55.994Z",
"updatedAt": "2026-05-05T04:55:12.927Z"
}