Jul
13
Mon
Board Meeting
5:16 AM – 9:07 AM
Rooftop
Vicissitudo triduana temeritas vesica.
Overview
calendar-events / #143
5:16 AM – 9:07 AM
Rooftop
Vicissitudo triduana temeritas vesica.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/143" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/143" ); 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/143"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/143"
)
calendar_event = res.json() Response
{
"id": 143,
"ownerUserId": 60,
"title": "Board Meeting",
"description": "Vicissitudo triduana temeritas vesica.",
"startAt": "2026-07-13T05:16:51.075Z",
"endAt": "2026-07-13T09:07:40.882Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [],
"createdAt": "2026-04-30T14:04:13.539Z",
"updatedAt": "2026-05-20T09:06:26.191Z"
}