May
14
Thu
Sprint Planning
3:43 AM – 3:43 AM
Google Meet
Copia coaegresco veniam minus claudeo cupio odio caste qui libero.
Overview
calendar-events / #542
3:43 AM – 3:43 AM
Google Meet
Copia coaegresco veniam minus claudeo cupio odio caste qui libero.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/542" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/542" ); 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/542"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/542"
)
calendar_event = res.json() Response
{
"id": 542,
"ownerUserId": 227,
"title": "Sprint Planning",
"description": "Copia coaegresco veniam minus claudeo cupio odio caste qui libero.",
"startAt": "2026-05-14T03:43:44.248Z",
"endAt": "2026-05-15T03:43:44.248Z",
"isAllDay": true,
"location": "Google Meet",
"attendeeUserIds": [
120,
2,
43,
211
],
"createdAt": "2026-03-05T06:11:29.051Z",
"updatedAt": "2026-05-21T18:39:30.945Z"
}