Jun
13
Sat
Off-site Planning
1:36 AM – 4:48 AM
Rooftop
Terminatio totidem video.
Overview
calendar-events / #332
1:36 AM – 4:48 AM
Rooftop
Terminatio totidem video.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/332" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/332" ); 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/332"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/332"
)
calendar_event = res.json() Response
{
"id": 332,
"ownerUserId": 137,
"title": "Off-site Planning",
"description": "Terminatio totidem video.",
"startAt": "2026-06-13T01:36:59.857Z",
"endAt": "2026-06-13T04:48:39.078Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
146,
63,
62,
178
],
"createdAt": "2026-02-24T08:28:31.123Z",
"updatedAt": "2026-04-22T09:49:28.482Z"
}