example-data.com

calendar-events / #15

Jul
17
Fri

Quarterly Review

9:21 PM – 10:49 PM

Main Boardroom

Totam sto soleo decens varietas vitiosus pauper aurum.

Component variants

curl -sS \
  "https://example-data.com/api/v1/calendar-events/15" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/calendar-events/15"
);
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/15"
);
const calendarEvent = (await res.json()) as CalendarEvent;
import requests

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/15"
)
calendar_event = res.json()
{
  "id": 15,
  "ownerUserId": 6,
  "title": "Quarterly Review",
  "description": "Totam sto soleo decens varietas vitiosus pauper aurum.",
  "startAt": "2026-07-17T21:21:11.929Z",
  "endAt": "2026-07-17T22:49:34.272Z",
  "isAllDay": false,
  "location": "Main Boardroom",
  "attendeeUserIds": [
    162,
    193,
    1
  ],
  "createdAt": "2026-04-06T05:35:16.513Z",
  "updatedAt": "2026-04-29T16:34:22.795Z"
}
Draftbit