Jul
13
Mon
Board Meeting
5:16 AM – 9:07 AM
Rooftop
Vicissitudo triduana temeritas vesica.
calendar-events / #143
5:16 AM – 9:07 AM
Rooftop
Vicissitudo triduana temeritas vesica.
curl -sS \
"https://example-data.com/api/v1/calendar-events/143" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/143"
);
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/143"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/143"
)
calendar_event = res.json() {
"id": 143,
"ownerUserId": 60,
"title": "Board Meeting",
"description": "Vicissitudo triduana temeritas vesica.",
"startAt": "2026-07-13T05:16:51.075Z",
"endAt": "2026-07-13T09:07:40.882Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [],
"createdAt": "2026-04-30T14:04:13.539Z",
"updatedAt": "2026-05-20T09:06:26.191Z"
}