Apr
17
Fri
Product Review
12:45 AM – 7:26 AM
Google Meet
Adeptio decerno molestiae harum commodo.
Overview
calendar-events / #345
12:45 AM – 7:26 AM
Google Meet
Adeptio decerno molestiae harum commodo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/345" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/345" ); 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/345"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/345"
)
calendar_event = res.json() Response
{
"id": 345,
"ownerUserId": 142,
"title": "Product Review",
"description": "Adeptio decerno molestiae harum commodo.",
"startAt": "2026-04-17T00:45:37.865Z",
"endAt": "2026-04-17T07:26:28.817Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
115,
244
],
"createdAt": "2026-04-16T02:13:19.052Z",
"updatedAt": "2026-05-05T01:39:46.910Z"
}