Apr
22
Wed
Hiring Interview
4:40 AM – 7:05 AM
Suffoco aperio bestia somniculosus cattus summisse statua.
Overview
calendar-events / #195
4:40 AM – 7:05 AM
Suffoco aperio bestia somniculosus cattus summisse statua.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/195" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/195" ); 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/195"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/195"
)
calendar_event = res.json() Response
{
"id": 195,
"ownerUserId": 85,
"title": "Hiring Interview",
"description": "Suffoco aperio bestia somniculosus cattus summisse statua.",
"startAt": "2026-04-22T04:40:03.900Z",
"endAt": "2026-04-22T07:05:14.816Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
108,
192
],
"createdAt": "2026-05-04T01:20:12.889Z",
"updatedAt": "2026-05-08T00:58:13.048Z"
}