Feb
26
Thu
Team Standup
8:06 AM – 9:44 AM
Main Boardroom
Carpo aptus anser cohaero confido adhaero vulpes comptus.
Overview
calendar-events / #275
8:06 AM – 9:44 AM
Main Boardroom
Carpo aptus anser cohaero confido adhaero vulpes comptus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/275" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/275" ); 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/275"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/275"
)
calendar_event = res.json() Response
{
"id": 275,
"ownerUserId": 116,
"title": "Team Standup",
"description": "Carpo aptus anser cohaero confido adhaero vulpes comptus.",
"startAt": "2026-02-26T08:06:39.619Z",
"endAt": "2026-02-26T09:44:58.845Z",
"isAllDay": false,
"location": "Main Boardroom",
"attendeeUserIds": [
90,
22,
219,
140
],
"createdAt": "2026-03-04T07:08:45.968Z",
"updatedAt": "2026-05-20T21:41:22.268Z"
}