example-data.com

calendar-events / #160

Jun
18
Thu

Budget Review

2:24 PM – 7:45 PM

Conturbo ut alias carbo.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/160"
)
calendar_event = res.json()
{
  "id": 160,
  "ownerUserId": 68,
  "title": "Budget Review",
  "description": "Conturbo ut alias carbo.",
  "startAt": "2026-06-18T14:24:45.831Z",
  "endAt": "2026-06-18T19:45:46.045Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    84,
    123,
    204
  ],
  "createdAt": "2026-04-13T00:48:25.999Z",
  "updatedAt": "2026-04-25T05:22:28.076Z"
}
Draftbit