Mar
10
Tue
1:1 with Manager
12:24 AM – 3:18 AM
Conference Room A
Tandem aggredior argentum theologus ratione tonsor.
Overview
calendar-events / #265
12:24 AM – 3:18 AM
Conference Room A
Tandem aggredior argentum theologus ratione tonsor.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/265" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/265" ); 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/265"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/265"
)
calendar_event = res.json() Response
{
"id": 265,
"ownerUserId": 113,
"title": "1:1 with Manager",
"description": "Tandem aggredior argentum theologus ratione tonsor.",
"startAt": "2026-03-10T00:24:58.761Z",
"endAt": "2026-03-10T03:18:47.509Z",
"isAllDay": false,
"location": "Conference Room A",
"attendeeUserIds": [
242,
201,
233,
163
],
"createdAt": "2026-02-21T21:37:10.881Z",
"updatedAt": "2026-05-13T01:22:08.674Z"
}