Apr
10
Fri
Sprint Planning
2:48 PM – 8:54 PM
Cafeteria
Aliquam tubineus sustineo damnatio adhuc aptus socius cupiditate.
Overview
calendar-events / #533
2:48 PM – 8:54 PM
Cafeteria
Aliquam tubineus sustineo damnatio adhuc aptus socius cupiditate.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/533" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/533" ); 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/533"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/533"
)
calendar_event = res.json() Response
{
"id": 533,
"ownerUserId": 223,
"title": "Sprint Planning",
"description": "Aliquam tubineus sustineo damnatio adhuc aptus socius cupiditate.",
"startAt": "2026-04-10T14:48:43.969Z",
"endAt": "2026-04-10T20:54:34.620Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [
110,
105,
3
],
"createdAt": "2026-03-21T08:51:15.695Z",
"updatedAt": "2026-04-04T07:23:34.939Z"
}