Mar
29
Sun
Sprint Planning
5:07 AM – 8:04 AM
Rooftop
Arca arx acervus.
Overview
calendar-events / #331
5:07 AM – 8:04 AM
Rooftop
Arca arx acervus.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/331" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/331" ); 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/331"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/331"
)
calendar_event = res.json() Response
{
"id": 331,
"ownerUserId": 137,
"title": "Sprint Planning",
"description": "Arca arx acervus.",
"startAt": "2026-03-29T05:07:42.325Z",
"endAt": "2026-03-29T08:04:39.134Z",
"isAllDay": false,
"location": "Rooftop",
"attendeeUserIds": [
187,
235,
48
],
"createdAt": "2026-03-03T06:32:57.247Z",
"updatedAt": "2026-04-07T06:49:17.380Z"
}