May
14
Thu
Product Review
6:18 AM – 6:18 AM
Google Meet
Campana ater canis ante ancilla pax torqueo.
Overview
calendar-events / #579
6:18 AM – 6:18 AM
Google Meet
Campana ater canis ante ancilla pax torqueo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/579" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/579" ); 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/579"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/579"
)
calendar_event = res.json() Response
{
"id": 579,
"ownerUserId": 241,
"title": "Product Review",
"description": "Campana ater canis ante ancilla pax torqueo.",
"startAt": "2026-05-14T06:18:59.484Z",
"endAt": "2026-05-15T06:18:59.484Z",
"isAllDay": true,
"location": "Google Meet",
"attendeeUserIds": [
164,
16,
38,
229
],
"createdAt": "2026-04-19T13:21:44.969Z",
"updatedAt": "2026-05-09T19:16:05.613Z"
}