Jul
20
Mon
Hiring Interview
3:32 PM – 11:14 PM
Rooftop
Uxor quae defluo admiratio curvo.
Overview
calendar-events / #521
3:32 PM – 11:14 PM
Rooftop
Uxor quae defluo admiratio curvo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/521" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/521" ); 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/521"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/521"
)
calendar_event = res.json() Response
{
"id": 521,
"ownerUserId": 217,
"title": "Hiring Interview",
"description": "Uxor quae defluo admiratio curvo.",
"startAt": "2026-07-20T15:32:20.843Z",
"endAt": "2026-07-20T23:14:33.301Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
233,
229,
12,
190,
87
],
"createdAt": "2026-05-05T16:18:14.191Z",
"updatedAt": "2026-05-19T15:39:37.983Z"
}