Apr
1
Wed
Demo Day
8:17 AM – 8:17 AM
Zoom
Creo calculus arbor copiose via adsidue ademptio.
Overview
calendar-events / #283
8:17 AM – 8:17 AM
Zoom
Creo calculus arbor copiose via adsidue ademptio.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/calendar-events/283" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/calendar-events/283" ); 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/283"
);
const calendarEvent = (await res.json()) as CalendarEvent; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/283"
)
calendar_event = res.json() Response
{
"id": 283,
"ownerUserId": 120,
"title": "Demo Day",
"description": "Creo calculus arbor copiose via adsidue ademptio.",
"startAt": "2026-04-01T08:17:26.932Z",
"endAt": "2026-04-02T08:17:26.932Z",
"isAllDay": true,
"location": "Zoom",
"attendeeUserIds": [
76
],
"createdAt": "2026-03-28T12:38:53.430Z",
"updatedAt": "2026-04-24T15:13:47.817Z"
}