Jul
7
Tue
Engineering All-Hands
6:34 AM – 6:34 AM
Zoom
Caveo patruus natus crapula dolorem arceo spoliatio thorax.
Overview
calendar-events / #80
6:34 AM – 6:34 AM
Zoom
Caveo patruus natus crapula dolorem arceo spoliatio thorax.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/80" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/80" ); 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/80"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/80"
)
calendar_event = res.json() Response
{
"id": 80,
"ownerUserId": 35,
"title": "Engineering All-Hands",
"description": "Caveo patruus natus crapula dolorem arceo spoliatio thorax.",
"startAt": "2026-07-07T06:34:05.305Z",
"endAt": "2026-07-08T06:34:05.305Z",
"isAllDay": true,
"location": "Zoom",
"attendeeUserIds": [
26,
148,
208,
2
],
"createdAt": "2026-02-25T22:11:28.961Z",
"updatedAt": "2026-03-17T23:01:40.202Z"
}