example-data.com

calendar-events / #166

Apr
11
Sat

Design Critique

9:20 PM – 9:20 PM

Conference Room B

Ultra adsidue aestas.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/166"
)
calendar_event = res.json()
{
  "id": 166,
  "ownerUserId": 70,
  "title": "Design Critique",
  "description": "Ultra adsidue aestas.",
  "startAt": "2026-04-11T21:20:25.166Z",
  "endAt": "2026-04-12T21:20:25.166Z",
  "isAllDay": true,
  "location": "Conference Room B",
  "attendeeUserIds": [
    208,
    217,
    242
  ],
  "createdAt": "2026-03-02T20:49:13.995Z",
  "updatedAt": "2026-03-28T12:42:05.358Z"
}
Draftbit