example-data.com

calendar-events / #53

Aug
12
Wed

Product Review

1:18 PM – 6:50 PM

Conference Room A

Carcer volva eveniet appello ascisco crudelis sperno.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/53"
)
calendar_event = res.json()
{
  "id": 53,
  "ownerUserId": 26,
  "title": "Product Review",
  "description": "Carcer volva eveniet appello ascisco crudelis sperno.",
  "startAt": "2026-08-12T13:18:49.061Z",
  "endAt": "2026-08-12T18:50:06.342Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [
    128,
    87,
    157
  ],
  "createdAt": "2026-03-09T01:26:56.176Z",
  "updatedAt": "2026-04-06T23:23:45.926Z"
}
Draftbit