Jul
6
Mon
Team Standup
9:36 PM – 3:45 AM
Zoom
Tremo optio antiquus comparo dolore contego nisi vir.
Overview
calendar-events / #405
9:36 PM – 3:45 AM
Zoom
Tremo optio antiquus comparo dolore contego nisi vir.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/405" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/405" ); 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/405"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/405"
)
calendar_event = res.json() Response
{
"id": 405,
"ownerUserId": 166,
"title": "Team Standup",
"description": "Tremo optio antiquus comparo dolore contego nisi vir.",
"startAt": "2026-07-06T21:36:07.516Z",
"endAt": "2026-07-07T03:45:25.980Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [
133,
11,
113
],
"createdAt": "2026-05-15T22:09:33.342Z",
"updatedAt": "2026-05-17T00:34:50.998Z"
}