Feb
25
Wed
1:1 with Manager
2:10 AM – 4:13 AM
Conference Room B
Deporto corrumpo brevis earum calamitas repellendus stillicidium dedico.
Overview
calendar-events / #443
2:10 AM – 4:13 AM
Conference Room B
Deporto corrumpo brevis earum calamitas repellendus stillicidium dedico.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/443" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/443" ); 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/443"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/443"
)
calendar_event = res.json() Response
{
"id": 443,
"ownerUserId": 181,
"title": "1:1 with Manager",
"description": "Deporto corrumpo brevis earum calamitas repellendus stillicidium dedico.",
"startAt": "2026-02-25T02:10:12.723Z",
"endAt": "2026-02-25T04:13:31.174Z",
"isAllDay": false,
"location": "Conference Room B",
"attendeeUserIds": [
114,
139,
201
],
"createdAt": "2026-03-17T08:54:53.450Z",
"updatedAt": "2026-05-17T14:41:32.687Z"
}