May
25
Mon
Hiring Interview
4:33 PM – 8:50 PM
Audax utroque deludo.
Overview
calendar-events / #504
4:33 PM – 8:50 PM
Audax utroque deludo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/504" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/504" ); 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/504"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/504"
)
calendar_event = res.json() Response
{
"id": 504,
"ownerUserId": 209,
"title": "Hiring Interview",
"description": "Audax utroque deludo.",
"startAt": "2026-05-25T16:33:01.217Z",
"endAt": "2026-05-25T20:50:19.265Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
78
],
"createdAt": "2026-04-20T06:35:17.597Z",
"updatedAt": "2026-04-30T10:49:58.807Z"
}