Jun
2
Tue
Hiring Interview
1:43 PM – 3:13 PM
Admoneo adfectus dicta statua absorbeo capillus depopulo inventore vulgaris.
Overview
calendar-events / #198
1:43 PM – 3:13 PM
Admoneo adfectus dicta statua absorbeo capillus depopulo inventore vulgaris.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/198" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/198" ); 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/198"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/198"
)
calendar_event = res.json() Response
{
"id": 198,
"ownerUserId": 86,
"title": "Hiring Interview",
"description": "Admoneo adfectus dicta statua absorbeo capillus depopulo inventore vulgaris.",
"startAt": "2026-06-02T13:43:00.873Z",
"endAt": "2026-06-02T15:13:08.591Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
242
],
"createdAt": "2026-05-21T15:39:10.529Z",
"updatedAt": "2026-05-21T19:05:09.079Z"
}