Apr
25
Sat
Sprint Planning
5:09 AM – 5:09 AM
Zoom
Conatus averto succedo vox.
calendar-events / #141
5:09 AM – 5:09 AM
Zoom
Conatus averto succedo vox.
curl -sS \
"https://example-data.com/api/v1/calendar-events/141" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/141"
);
const calendarEvent = await res.json();import type { CalendarEvent } from "https://example-data.com/types/calendar-events.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/calendar-events/141"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/141"
)
calendar_event = res.json() {
"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"
}