Jun
17
Wed
Onboarding Session
8:00 PM – 10:38 PM
Google Meet
Virtus patria volva caute.
Overview
calendar-events / #88
8:00 PM – 10:38 PM
Google Meet
Virtus patria volva caute.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/88" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/88" ); 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/88"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/88"
)
calendar_event = res.json() Response
{
"id": 88,
"ownerUserId": 37,
"title": "Onboarding Session",
"description": "Virtus patria volva caute.",
"startAt": "2026-06-17T20:00:44.207Z",
"endAt": "2026-06-17T22:38:12.024Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
58
],
"createdAt": "2026-05-17T19:27:14.139Z",
"updatedAt": "2026-05-17T19:50:22.499Z"
}