Apr
22
Wed
Team Lunch
1:54 AM – 7:00 AM
Google Meet
Damno amaritudo spoliatio decimus stabilis beatae bellicus.
Overview
calendar-events / #445
1:54 AM – 7:00 AM
Google Meet
Damno amaritudo spoliatio decimus stabilis beatae bellicus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/445" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/445" ); const calendarEvent = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/calendar-events.d.ts https://example-data.com/types/calendar-events.d.ts
import type { CalendarEvent } from "./types/calendar-events";
const res = await fetch(
"https://example-data.com/api/v1/calendar-events/445"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/445"
)
calendar_event = res.json() Response
{
"id": 445,
"ownerUserId": 182,
"title": "Team Lunch",
"description": "Damno amaritudo spoliatio decimus stabilis beatae bellicus.",
"startAt": "2026-04-22T01:54:40.372Z",
"endAt": "2026-04-22T07:00:31.988Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
138,
128,
214
],
"createdAt": "2026-03-30T01:54:02.420Z",
"updatedAt": "2026-04-07T23:48:55.593Z"
}