Apr
5
Sun
Sprint Planning
10:45 AM – 12:48 PM
Demoror amplus bardus victus demoror decet aufero.
Overview
calendar-events / #352
10:45 AM – 12:48 PM
Demoror amplus bardus victus demoror decet aufero.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/352" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/352" ); 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/352"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/352"
)
calendar_event = res.json() Response
{
"id": 352,
"ownerUserId": 144,
"title": "Sprint Planning",
"description": "Demoror amplus bardus victus demoror decet aufero.",
"startAt": "2026-04-05T10:45:19.156Z",
"endAt": "2026-04-05T12:48:21.678Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
48,
188
],
"createdAt": "2026-04-20T20:01:38.444Z",
"updatedAt": "2026-04-28T16:46:31.820Z"
}