Aug
1
Sat
Sprint Planning
7:32 AM – 12:44 PM
Zoom
Summa cattus derideo collum.
Overview
calendar-events / #334
7:32 AM – 12:44 PM
Zoom
Summa cattus derideo collum.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/334" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/334" ); 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/334"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/334"
)
calendar_event = res.json() Response
{
"id": 334,
"ownerUserId": 138,
"title": "Sprint Planning",
"description": "Summa cattus derideo collum.",
"startAt": "2026-08-01T07:32:15.899Z",
"endAt": "2026-08-01T12:44:06.628Z",
"isAllDay": false,
"location": "Zoom",
"attendeeUserIds": [],
"createdAt": "2026-05-18T17:04:51.601Z",
"updatedAt": "2026-05-20T02:05:30.838Z"
}