Apr
21
Tue
Onboarding Session
11:26 PM – 4:35 AM
Cafeteria
Ipsum appono claustrum spero villa amitto toties.
Overview
calendar-events / #247
11:26 PM – 4:35 AM
Cafeteria
Ipsum appono claustrum spero villa amitto toties.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/247" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/247" ); 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/247"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/247"
)
calendar_event = res.json() Response
{
"id": 247,
"ownerUserId": 106,
"title": "Onboarding Session",
"description": "Ipsum appono claustrum spero villa amitto toties.",
"startAt": "2026-04-21T23:26:55.647Z",
"endAt": "2026-04-22T04:35:11.081Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [
48,
88,
245
],
"createdAt": "2026-03-28T19:35:48.112Z",
"updatedAt": "2026-05-11T22:48:24.464Z"
}