Jun
20
Sat
Sprint Planning
4:27 PM – 4:27 PM
Cafeteria
Aufero derelinquo ancilla libero.
Overview
calendar-events / #508
4:27 PM – 4:27 PM
Cafeteria
Aufero derelinquo ancilla libero.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/508" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/508" ); 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/508"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/508"
)
calendar_event = res.json() Response
{
"id": 508,
"ownerUserId": 211,
"title": "Sprint Planning",
"description": "Aufero derelinquo ancilla libero.",
"startAt": "2026-06-20T16:27:46.886Z",
"endAt": "2026-06-21T16:27:46.886Z",
"isAllDay": true,
"location": "Cafeteria",
"attendeeUserIds": [
63,
42,
90
],
"createdAt": "2026-05-10T19:03:52.599Z",
"updatedAt": "2026-05-20T11:16:31.915Z"
}