Apr
25
Sat
Sprint Planning
5:09 AM – 5:09 AM
Zoom
Conatus averto succedo vox.
Overview
calendar-events / #141
5:09 AM – 5:09 AM
Zoom
Conatus averto succedo vox.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/141" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/141" ); 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/141"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/141"
)
calendar_event = res.json() Response
{
"id": 141,
"ownerUserId": 59,
"title": "Sprint Planning",
"description": "Conatus averto succedo vox.",
"startAt": "2026-04-25T05:09:24.611Z",
"endAt": "2026-04-26T05:09:24.611Z",
"isAllDay": true,
"location": "Zoom",
"attendeeUserIds": [
89,
58,
228,
53
],
"createdAt": "2026-03-13T05:00:26.794Z",
"updatedAt": "2026-04-12T05:30:17.930Z"
}