May
7
Thu
Board Meeting
5:40 PM – 5:40 PM
Alter inventore depraedor amoveo curis aer curvo theatrum canto.
Overview
calendar-events / #348
5:40 PM – 5:40 PM
Alter inventore depraedor amoveo curis aer curvo theatrum canto.
Board Meeting
5:40 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/348" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/348" ); 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/348"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/348"
)
calendar_event = res.json() Response
{
"id": 348,
"ownerUserId": 143,
"title": "Board Meeting",
"description": "Alter inventore depraedor amoveo curis aer curvo theatrum canto.",
"startAt": "2026-05-07T17:40:38.964Z",
"endAt": "2026-05-08T17:40:38.964Z",
"isAllDay": true,
"location": null,
"attendeeUserIds": [],
"createdAt": "2026-03-15T04:19:54.031Z",
"updatedAt": "2026-05-21T16:05:04.563Z"
}