example-data.com

calendar-events / #78

Mar
3
Tue

Demo Day

2:13 AM – 7:20 AM

Office - Floor 3

Amaritudo tenus possimus damno texo autem brevis tripudio clamo caveo.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/78"
)
calendar_event = res.json()
{
  "id": 78,
  "ownerUserId": 35,
  "title": "Demo Day",
  "description": "Amaritudo tenus possimus damno texo autem brevis tripudio clamo caveo.",
  "startAt": "2026-03-03T02:13:18.046Z",
  "endAt": "2026-03-03T07:20:14.505Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    84,
    118,
    13,
    12,
    210
  ],
  "createdAt": "2026-04-10T06:28:18.574Z",
  "updatedAt": "2026-04-28T21:05:54.687Z"
}
Draftbit