Apr
24
Fri
Off-site Planning
4:41 AM – 4:41 AM
Google Meet
Tot spectaculum decens cibo ustilo crinis.
Overview
calendar-events / #470
4:41 AM – 4:41 AM
Google Meet
Tot spectaculum decens cibo ustilo crinis.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/470" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/470" ); 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/470"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/470"
)
calendar_event = res.json() Response
{
"id": 470,
"ownerUserId": 191,
"title": "Off-site Planning",
"description": "Tot spectaculum decens cibo ustilo crinis.",
"startAt": "2026-04-24T04:41:23.222Z",
"endAt": "2026-04-25T04:41:23.222Z",
"isAllDay": true,
"location": "Google Meet",
"attendeeUserIds": [
195,
78
],
"createdAt": "2026-04-10T02:42:54.459Z",
"updatedAt": "2026-05-14T02:49:57.976Z"
}