May
27
Wed
Security Training
5:39 AM – 9:21 AM
Google Meet
Molestiae avaritia succurro expedita caveo veritatis.
Overview
calendar-events / #272
5:39 AM – 9:21 AM
Google Meet
Molestiae avaritia succurro expedita caveo veritatis.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/272" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/272" ); 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/272"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/272"
)
calendar_event = res.json() Response
{
"id": 272,
"ownerUserId": 115,
"title": "Security Training",
"description": "Molestiae avaritia succurro expedita caveo veritatis.",
"startAt": "2026-05-27T05:39:23.816Z",
"endAt": "2026-05-27T09:21:17.197Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
188,
98,
129,
245
],
"createdAt": "2026-05-16T02:13:00.096Z",
"updatedAt": "2026-05-20T03:14:31.494Z"
}