example-data.com

calendar-events / #235

Apr
15
Wed

Design Critique

1:33 AM – 7:40 AM

Cafeteria

Celo calcar cattus ulterius audio distinctio antea uter officiis.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/235"
)
calendar_event = res.json()
{
  "id": 235,
  "ownerUserId": 100,
  "title": "Design Critique",
  "description": "Celo calcar cattus ulterius audio distinctio antea uter officiis.",
  "startAt": "2026-04-15T01:33:13.470Z",
  "endAt": "2026-04-15T07:40:34.090Z",
  "isAllDay": false,
  "location": "Cafeteria",
  "attendeeUserIds": [],
  "createdAt": "2026-04-28T02:21:13.757Z",
  "updatedAt": "2026-05-04T19:01:27.751Z"
}
Draftbit