Apr
9
Thu
Quarterly Review
8:55 PM – 8:55 PM
Google Meet
Bestia vita vulnero xiphias.
Overview
calendar-events / #29
8:55 PM – 8:55 PM
Google Meet
Bestia vita vulnero xiphias.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/29" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/29" ); 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/29"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/29"
)
calendar_event = res.json() Response
{
"id": 29,
"ownerUserId": 14,
"title": "Quarterly Review",
"description": "Bestia vita vulnero xiphias.",
"startAt": "2026-04-09T20:55:07.203Z",
"endAt": "2026-04-10T20:55:07.203Z",
"isAllDay": true,
"location": "Google Meet",
"attendeeUserIds": [],
"createdAt": "2026-04-26T19:10:53.173Z",
"updatedAt": "2026-04-30T05:30:34.798Z"
}