Jun
8
Mon
Hiring Interview
3:57 AM – 9:52 AM
Celo terror adeptio atrocitas tolero.
Overview
calendar-events / #286
3:57 AM – 9:52 AM
Celo terror adeptio atrocitas tolero.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/286" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/286" ); 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/286"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/286"
)
calendar_event = res.json() Response
{
"id": 286,
"ownerUserId": 121,
"title": "Hiring Interview",
"description": "Celo terror adeptio atrocitas tolero.",
"startAt": "2026-06-08T03:57:11.465Z",
"endAt": "2026-06-08T09:52:55.846Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [],
"createdAt": "2026-05-19T03:19:57.073Z",
"updatedAt": "2026-05-20T02:14:54.093Z"
}