example-data.com

calendar-events / #55

Apr
8
Wed

Hiring Interview

6:28 AM – 7:44 AM

Main Boardroom

Commodi similique vulgo voveo quia comprehendo umquam.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/55"
)
calendar_event = res.json()
{
  "id": 55,
  "ownerUserId": 26,
  "title": "Hiring Interview",
  "description": "Commodi similique vulgo voveo quia comprehendo umquam.",
  "startAt": "2026-04-08T06:28:18.442Z",
  "endAt": "2026-04-08T07:44:08.744Z",
  "isAllDay": false,
  "location": "Main Boardroom",
  "attendeeUserIds": [
    8,
    121
  ],
  "createdAt": "2026-05-10T21:10:21.519Z",
  "updatedAt": "2026-05-15T04:24:02.048Z"
}
Draftbit