Jul
13
Mon
Engineering All-Hands
7:41 AM – 7:41 AM
Google Meet
Barba thesis paens tyrannus vita volo aranea bibo trans.
Overview
calendar-events / #264
7:41 AM – 7:41 AM
Google Meet
Barba thesis paens tyrannus vita volo aranea bibo trans.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/264" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/264" ); 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/264"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/264"
)
calendar_event = res.json() Response
{
"id": 264,
"ownerUserId": 113,
"title": "Engineering All-Hands",
"description": "Barba thesis paens tyrannus vita volo aranea bibo trans.",
"startAt": "2026-07-13T07:41:15.730Z",
"endAt": "2026-07-14T07:41:15.730Z",
"isAllDay": true,
"location": "Google Meet",
"attendeeUserIds": [
31,
110,
63,
128
],
"createdAt": "2026-03-14T00:57:59.000Z",
"updatedAt": "2026-04-04T07:20:06.458Z"
}