May
9
Sat
Engineering All-Hands
11:24 PM – 1:00 AM
Succedo suffragium usus thesaurus.
calendar-events / #157
11:24 PM – 1:00 AM
Succedo suffragium usus thesaurus.
curl -sS \
"https://example-data.com/api/v1/calendar-events/157" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/157"
);
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/157"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/157"
)
calendar_event = res.json() {
"id": 157,
"ownerUserId": 67,
"title": "Engineering All-Hands",
"description": "Succedo suffragium usus thesaurus.",
"startAt": "2026-05-09T23:24:06.971Z",
"endAt": "2026-05-10T01:00:08.533Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [],
"createdAt": "2026-03-13T16:52:37.059Z",
"updatedAt": "2026-03-15T18:37:04.377Z"
}