Jul
1
Wed
Hiring Interview
4:35 PM – 8:18 PM
Annus terror apostolus viriliter.
Overview
calendar-events / #129
4:35 PM – 8:18 PM
Annus terror apostolus viriliter.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/129" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/129" ); 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/129"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/129"
)
calendar_event = res.json() Response
{
"id": 129,
"ownerUserId": 54,
"title": "Hiring Interview",
"description": "Annus terror apostolus viriliter.",
"startAt": "2026-07-01T16:35:09.738Z",
"endAt": "2026-07-01T20:18:55.985Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
40,
77,
89,
163
],
"createdAt": "2026-02-22T18:09:09.345Z",
"updatedAt": "2026-03-06T21:15:30.987Z"
}