Apr
25
Sat
Engineering All-Hands
1:11 PM – 1:11 PM
Vinco aperio antea usus arbustum.
Overview
calendar-events / #145
1:11 PM – 1:11 PM
Vinco aperio antea usus arbustum.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/145" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/145" ); 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/145"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/145"
)
calendar_event = res.json() Response
{
"id": 145,
"ownerUserId": 62,
"title": "Engineering All-Hands",
"description": "Vinco aperio antea usus arbustum.",
"startAt": "2026-04-25T13:11:20.956Z",
"endAt": "2026-04-26T13:11:20.956Z",
"isAllDay": true,
"location": null,
"attendeeUserIds": [
3,
184,
235,
138
],
"createdAt": "2026-04-09T13:17:36.584Z",
"updatedAt": "2026-05-02T18:13:23.286Z"
}