Mar
6
Fri
Security Training
12:32 AM – 8:02 AM
Sustineo adeptio credo cilicium compello somnus conscendo ademptio coniecto ara.
Overview
calendar-events / #150
12:32 AM – 8:02 AM
Sustineo adeptio credo cilicium compello somnus conscendo ademptio coniecto ara.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/150" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/150" ); 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/150"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/150"
)
calendar_event = res.json() Response
{
"id": 150,
"ownerUserId": 65,
"title": "Security Training",
"description": "Sustineo adeptio credo cilicium compello somnus conscendo ademptio coniecto ara.",
"startAt": "2026-03-06T00:32:09.750Z",
"endAt": "2026-03-06T08:02:02.579Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
223,
197,
32
],
"createdAt": "2026-03-08T19:51:04.415Z",
"updatedAt": "2026-05-14T08:07:17.496Z"
}