Apr
4
Sat
Engineering All-Hands
11:07 PM – 11:07 PM
Rooftop
Unde termes sortitus.
Overview
calendar-events / #350
11:07 PM – 11:07 PM
Rooftop
Unde termes sortitus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/350" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/350" ); 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/350"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/350"
)
calendar_event = res.json() Response
{
"id": 350,
"ownerUserId": 144,
"title": "Engineering All-Hands",
"description": "Unde termes sortitus.",
"startAt": "2026-04-04T23:07:24.237Z",
"endAt": "2026-04-05T23:07:24.237Z",
"isAllDay": true,
"location": "Rooftop",
"attendeeUserIds": [
5
],
"createdAt": "2026-03-11T04:59:04.709Z",
"updatedAt": "2026-04-28T18:45:30.273Z"
}