example-data.com

calendar-events / #142

Apr
14
Tue

Budget Review

11:01 AM – 4:20 PM

Conference Room B

Repellat quisquam cernuus tero.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/142"
)
calendar_event = res.json()
{
  "id": 142,
  "ownerUserId": 60,
  "title": "Budget Review",
  "description": "Repellat quisquam cernuus tero.",
  "startAt": "2026-04-14T11:01:00.397Z",
  "endAt": "2026-04-14T16:20:51.957Z",
  "isAllDay": false,
  "location": "Conference Room B",
  "attendeeUserIds": [
    102,
    71,
    54
  ],
  "createdAt": "2026-04-16T10:04:24.478Z",
  "updatedAt": "2026-04-18T03:55:46.587Z"
}
Draftbit