Aug
1
Sat
Product Review
4:44 AM – 8:55 AM
Office - Floor 3
Alius corona suscipit sollers tot tabesco terror.
calendar-events / #27
4:44 AM – 8:55 AM
Office - Floor 3
Alius corona suscipit sollers tot tabesco terror.
curl -sS \
"https://example-data.com/api/v1/calendar-events/27" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/27"
);
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/27"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/27"
)
calendar_event = res.json() {
"id": 27,
"ownerUserId": 13,
"title": "Product Review",
"description": "Alius corona suscipit sollers tot tabesco terror.",
"startAt": "2026-08-01T04:44:50.274Z",
"endAt": "2026-08-01T08:55:31.352Z",
"isAllDay": false,
"location": "Office - Floor 3",
"attendeeUserIds": [],
"createdAt": "2026-05-14T20:39:23.442Z",
"updatedAt": "2026-05-14T23:54:22.517Z"
}