Aug
13
Thu
Board Meeting
6:28 PM – 9:37 PM
Google Meet
Attonbitus argentum universe ager crur vae demoror eum desparatus.
Overview
calendar-events / #583
6:28 PM – 9:37 PM
Google Meet
Attonbitus argentum universe ager crur vae demoror eum desparatus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/583" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/583" ); 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/583"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/583"
)
calendar_event = res.json() Response
{
"id": 583,
"ownerUserId": 242,
"title": "Board Meeting",
"description": "Attonbitus argentum universe ager crur vae demoror eum desparatus.",
"startAt": "2026-08-13T18:28:42.011Z",
"endAt": "2026-08-13T21:37:08.425Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
61
],
"createdAt": "2026-02-28T17:30:08.989Z",
"updatedAt": "2026-04-19T21:25:37.230Z"
}