Apr
26
Sun
Sprint Planning
3:20 PM – 3:20 PM
Cafeteria
Sordeo corrumpo vinitor.
Overview
calendar-events / #596
3:20 PM – 3:20 PM
Cafeteria
Sordeo corrumpo vinitor.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/596" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/596" ); 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/596"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/596"
)
calendar_event = res.json() Response
{
"id": 596,
"ownerUserId": 248,
"title": "Sprint Planning",
"description": "Sordeo corrumpo vinitor.",
"startAt": "2026-04-26T15:20:35.164Z",
"endAt": "2026-04-27T15:20:35.164Z",
"isAllDay": true,
"location": "Cafeteria",
"attendeeUserIds": [
108
],
"createdAt": "2026-03-26T05:48:16.892Z",
"updatedAt": "2026-05-09T17:07:47.959Z"
}