example-data.com

calendar-events / #24

Jul
9
Thu

Product Review

1:26 AM – 4:01 AM

Conference Room A

Asperiores debeo super conforto cervus.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/24"
)
calendar_event = res.json()
{
  "id": 24,
  "ownerUserId": 11,
  "title": "Product Review",
  "description": "Asperiores debeo super conforto cervus.",
  "startAt": "2026-07-09T01:26:35.194Z",
  "endAt": "2026-07-09T04:01:13.641Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [
    121,
    249,
    193,
    144
  ],
  "createdAt": "2026-04-14T16:56:32.825Z",
  "updatedAt": "2026-05-13T14:48:18.586Z"
}
Draftbit