Apr
29
Wed
Sprint Planning
11:19 AM – 2:16 PM
Google Meet
Amor soleo curo surculus tabella absque audax.
Overview
calendar-events / #413
11:19 AM – 2:16 PM
Google Meet
Amor soleo curo surculus tabella absque audax.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/413" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/413" ); 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/413"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/413"
)
calendar_event = res.json() Response
{
"id": 413,
"ownerUserId": 169,
"title": "Sprint Planning",
"description": "Amor soleo curo surculus tabella absque audax.",
"startAt": "2026-04-29T11:19:02.732Z",
"endAt": "2026-04-29T14:16:52.162Z",
"isAllDay": false,
"location": "Google Meet",
"attendeeUserIds": [
199,
38,
6,
81
],
"createdAt": "2026-05-14T21:25:33.281Z",
"updatedAt": "2026-05-17T19:20:19.698Z"
}