May
18
Mon
Team Standup
5:29 PM – 11:47 PM
Main Boardroom
Absorbeo peccatus peccatus tam aspernatur communis cohaero sapiente.
Overview
calendar-events / #589
5:29 PM – 11:47 PM
Main Boardroom
Absorbeo peccatus peccatus tam aspernatur communis cohaero sapiente.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/589" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/589" ); 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/589"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/589"
)
calendar_event = res.json() Response
{
"id": 589,
"ownerUserId": 245,
"title": "Team Standup",
"description": "Absorbeo peccatus peccatus tam aspernatur communis cohaero sapiente.",
"startAt": "2026-05-18T17:29:27.510Z",
"endAt": "2026-05-18T23:47:56.781Z",
"isAllDay": false,
"location": "Main Boardroom",
"attendeeUserIds": [
229,
79,
217
],
"createdAt": "2026-04-22T20:07:09.414Z",
"updatedAt": "2026-04-26T04:29:50.385Z"
}