May
12
Tue
Security Training
8:10 PM – 12:04 AM
Rooftop
Tandem ad crapula doloremque dignissimos demonstro capillus sopor amplus.
Overview
calendar-events / #152
8:10 PM – 12:04 AM
Rooftop
Tandem ad crapula doloremque dignissimos demonstro capillus sopor amplus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/152" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/152" ); 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/152"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/152"
)
calendar_event = res.json() Response
{
"id": 152,
"ownerUserId": 65,
"title": "Security Training",
"description": "Tandem ad crapula doloremque dignissimos demonstro capillus sopor amplus.",
"startAt": "2026-05-12T20:10:32.588Z",
"endAt": "2026-05-13T00:04:04.983Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
142,
172
],
"createdAt": "2026-05-20T21:05:09.387Z",
"updatedAt": "2026-05-21T22:22:15.726Z"
}