May
3
Sun
Hiring Interview
9:39 PM – 2:09 AM
Rooftop
Cursus alii tonsor utpote baiulus.
Overview
calendar-events / #384
9:39 PM – 2:09 AM
Rooftop
Cursus alii tonsor utpote baiulus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/384" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/384" ); 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/384"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/384"
)
calendar_event = res.json() Response
{
"id": 384,
"ownerUserId": 157,
"title": "Hiring Interview",
"description": "Cursus alii tonsor utpote baiulus.",
"startAt": "2026-05-03T21:39:49.827Z",
"endAt": "2026-05-04T02:09:12.708Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
198
],
"createdAt": "2026-04-05T23:00:58.753Z",
"updatedAt": "2026-05-14T05:39:56.301Z"
}