Mar
8
Sun
Board Meeting
9:07 PM – 9:07 PM
Conference Room A
Terga supplanto suadeo.
Overview
calendar-events / #373
9:07 PM – 9:07 PM
Conference Room A
Terga supplanto suadeo.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/373" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/373" ); 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/373"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/373"
)
calendar_event = res.json() Response
{
"id": 373,
"ownerUserId": 153,
"title": "Board Meeting",
"description": "Terga supplanto suadeo.",
"startAt": "2026-03-08T21:07:21.578Z",
"endAt": "2026-03-09T21:07:21.578Z",
"isAllDay": true,
"location": "Conference Room A",
"attendeeUserIds": [],
"createdAt": "2026-05-19T16:28:18.657Z",
"updatedAt": "2026-05-21T22:53:19.255Z"
}