Jul
30
Thu
Board Meeting
3:10 AM – 4:20 AM
Google Meet
Voluptatibus titulus vir aufero aranea.
Overview
calendar-events / #474
3:10 AM – 4:20 AM
Google Meet
Voluptatibus titulus vir aufero aranea.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/474" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/474" ); 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/474"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/474"
)
calendar_event = res.json() Response
{
"id": 474,
"ownerUserId": 193,
"title": "Board Meeting",
"description": "Voluptatibus titulus vir aufero aranea.",
"startAt": "2026-07-30T03:10:36.477Z",
"endAt": "2026-07-30T04:20:38.160Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
231,
115,
175,
18
],
"createdAt": "2026-04-15T10:31:40.480Z",
"updatedAt": "2026-05-01T05:42:42.425Z"
}