Jun
1
Mon
Strategy Workshop
5:41 PM – 9:45 PM
Zoom
Benevolentia officiis blanditiis cogito terga minima.
Overview
calendar-events / #144
5:41 PM – 9:45 PM
Zoom
Benevolentia officiis blanditiis cogito terga minima.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/144" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/144" ); 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/144"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/144"
)
calendar_event = res.json() Response
{
"id": 144,
"ownerUserId": 61,
"title": "Strategy Workshop",
"description": "Benevolentia officiis blanditiis cogito terga minima.",
"startAt": "2026-06-01T17:41:50.576Z",
"endAt": "2026-06-01T21:45:13.722Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
80
],
"createdAt": "2026-03-26T13:34:00.961Z",
"updatedAt": "2026-04-15T11:00:29.691Z"
}