Jul
21
Tue
Onboarding Session
4:04 PM – 4:04 PM
Varius creator viduo.
Overview
calendar-events / #284
4:04 PM – 4:04 PM
Varius creator viduo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/284" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/284" ); 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/284"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/284"
)
calendar_event = res.json() Response
{
"id": 284,
"ownerUserId": 120,
"title": "Onboarding Session",
"description": "Varius creator viduo.",
"startAt": "2026-07-21T16:04:55.202Z",
"endAt": "2026-07-22T16:04:55.202Z",
"isAllDay": true,
"location": null,
"attendeeUserIds": [
138,
110,
232
],
"createdAt": "2026-02-23T10:37:39.250Z",
"updatedAt": "2026-05-09T11:57:33.711Z"
}