Aug
1
Sat
Hiring Interview
7:25 PM – 7:25 PM
Cafeteria
Audacia toties verumtamen casso confero delicate turpis molestiae umbra.
Overview
calendar-events / #393
7:25 PM – 7:25 PM
Cafeteria
Audacia toties verumtamen casso confero delicate turpis molestiae umbra.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/393" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/393" ); 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/393"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/393"
)
calendar_event = res.json() Response
{
"id": 393,
"ownerUserId": 161,
"title": "Hiring Interview",
"description": "Audacia toties verumtamen casso confero delicate turpis molestiae umbra.",
"startAt": "2026-08-01T19:25:22.600Z",
"endAt": "2026-08-02T19:25:22.600Z",
"isAllDay": true,
"location": "Cafeteria",
"attendeeUserIds": [
223,
168
],
"createdAt": "2026-03-23T17:06:17.567Z",
"updatedAt": "2026-04-14T19:48:32.774Z"
}