Jul
1
Wed
Budget Review
2:19 AM – 5:53 AM
Cafeteria
Blanditiis tristis defero catena vespillo.
Overview
calendar-events / #367
2:19 AM – 5:53 AM
Cafeteria
Blanditiis tristis defero catena vespillo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/367" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/367" ); 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/367"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/367"
)
calendar_event = res.json() Response
{
"id": 367,
"ownerUserId": 150,
"title": "Budget Review",
"description": "Blanditiis tristis defero catena vespillo.",
"startAt": "2026-07-01T02:19:03.860Z",
"endAt": "2026-07-01T05:53:52.163Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [],
"createdAt": "2026-04-18T17:38:53.415Z",
"updatedAt": "2026-04-26T05:19:43.267Z"
}