Apr
25
Sat
Engineering All-Hands
1:11 PM – 1:11 PM
Vinco aperio antea usus arbustum.
calendar-events / #145
1:11 PM – 1:11 PM
Vinco aperio antea usus arbustum.
curl -sS \
"https://example-data.com/api/v1/calendar-events/145" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/145"
);
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/145"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/145"
)
calendar_event = res.json() {
"id": 145,
"ownerUserId": 62,
"title": "Engineering All-Hands",
"description": "Vinco aperio antea usus arbustum.",
"startAt": "2026-04-25T13:11:20.956Z",
"endAt": "2026-04-26T13:11:20.956Z",
"isAllDay": true,
"location": null,
"attendeeUserIds": [
3,
184,
235,
138
],
"createdAt": "2026-04-09T13:17:36.584Z",
"updatedAt": "2026-05-02T18:13:23.286Z"
}