Apr
4
Sat
Strategy Workshop
10:41 AM – 10:41 AM
Google Meet
Auditor vobis tondeo ducimus sumo magnam aggredior utilis tui commodo.
Overview
calendar-events / #226
10:41 AM – 10:41 AM
Google Meet
Auditor vobis tondeo ducimus sumo magnam aggredior utilis tui commodo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/226" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/226" ); 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/226"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/226"
)
calendar_event = res.json() Response
{
"id": 226,
"ownerUserId": 96,
"title": "Strategy Workshop",
"description": "Auditor vobis tondeo ducimus sumo magnam aggredior utilis tui commodo.",
"startAt": "2026-04-04T10:41:18.669Z",
"endAt": "2026-04-05T10:41:18.669Z",
"isAllDay": true,
"location": "Google Meet",
"attendeeUserIds": [
111
],
"createdAt": "2026-05-09T16:39:18.786Z",
"updatedAt": "2026-05-16T06:56:42.827Z"
}