example-data.com

calendar-events / #44

Apr
21
Tue

Budget Review

12:44 AM – 3:13 AM

Office - Floor 3

Aer strues vociferor patruus deludo ad voro adipiscor appositus caecus.

Component variants

curl -sS \
  "https://example-data.com/api/v1/calendar-events/44" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/calendar-events/44"
);
const calendarEvent = await res.json();
import type { CalendarEvent } from "https://example-data.com/types/calendar-events.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/calendar-events/44"
);
const calendarEvent = (await res.json()) as CalendarEvent;
import requests

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/44"
)
calendar_event = res.json()
{
  "id": 44,
  "ownerUserId": 22,
  "title": "Budget Review",
  "description": "Aer strues vociferor patruus deludo ad voro adipiscor appositus caecus.",
  "startAt": "2026-04-21T00:44:19.448Z",
  "endAt": "2026-04-21T03:13:16.911Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    45,
    189,
    195,
    162
  ],
  "createdAt": "2026-03-18T10:59:42.139Z",
  "updatedAt": "2026-05-07T16:24:03.092Z"
}
Draftbit