May
20
Wed
Budget Review
12:50 PM – 4:43 PM
Abeo facilis amita bellicus verecundia.
Overview
calendar-events / #421
12:50 PM – 4:43 PM
Abeo facilis amita bellicus verecundia.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/421" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/421" ); 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/421"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/421"
)
calendar_event = res.json() Response
{
"id": 421,
"ownerUserId": 173,
"title": "Budget Review",
"description": "Abeo facilis amita bellicus verecundia.",
"startAt": "2026-05-20T12:50:19.182Z",
"endAt": "2026-05-20T16:43:12.173Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [],
"createdAt": "2026-03-23T16:45:05.797Z",
"updatedAt": "2026-05-15T00:45:30.233Z"
}