Jul
13
Mon
Off-site Planning
10:16 AM – 12:32 PM
Google Meet
Clibanus subvenio vergo animus tempus beatae trepide comptus victus.
Overview
calendar-events / #329
10:16 AM – 12:32 PM
Google Meet
Clibanus subvenio vergo animus tempus beatae trepide comptus victus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/329" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/329" ); 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/329"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/329"
)
calendar_event = res.json() Response
{
"id": 329,
"ownerUserId": 136,
"title": "Off-site Planning",
"description": "Clibanus subvenio vergo animus tempus beatae trepide comptus victus.",
"startAt": "2026-07-13T10:16:00.563Z",
"endAt": "2026-07-13T12:32:17.893Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
177,
192,
76
],
"createdAt": "2026-03-31T09:13:35.578Z",
"updatedAt": "2026-04-12T05:21:52.979Z"
}