May
15
Fri
Retrospective
7:02 PM – 8:54 PM
Conference Room A
Creber tonsor adstringo cubo vis comburo creptio adulescens.
Overview
calendar-events / #382
7:02 PM – 8:54 PM
Conference Room A
Creber tonsor adstringo cubo vis comburo creptio adulescens.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/382" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/382" ); 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/382"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/382"
)
calendar_event = res.json() Response
{
"id": 382,
"ownerUserId": 157,
"title": "Retrospective",
"description": "Creber tonsor adstringo cubo vis comburo creptio adulescens.",
"startAt": "2026-05-15T19:02:24.238Z",
"endAt": "2026-05-15T20:54:25.610Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [
51,
148,
65,
35,
164
],
"createdAt": "2026-05-05T12:03:57.973Z",
"updatedAt": "2026-05-16T10:24:35.241Z"
}