Aug
13
Thu
Team Lunch
1:43 AM – 5:00 AM
Google Meet
Vinculum causa templum demoror valeo.
calendar-events / #33
1:43 AM – 5:00 AM
Google Meet
Vinculum causa templum demoror valeo.
curl -sS \
"https://example-data.com/api/v1/calendar-events/33" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/33"
);
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/33"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/33"
)
calendar_event = res.json() {
"id": 33,
"ownerUserId": 17,
"title": "Team Lunch",
"description": "Vinculum causa templum demoror valeo.",
"startAt": "2026-08-13T01:43:57.248Z",
"endAt": "2026-08-13T05:00:26.069Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
233,
151,
194
],
"createdAt": "2026-03-24T16:34:53.788Z",
"updatedAt": "2026-05-04T12:06:44.081Z"
}