example-data.com

calendar-events / #87

May
5
Tue

Design Critique

5:14 AM – 5:14 AM

Cafeteria

Patria conduco catena aeger congregatio.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/87"
)
calendar_event = res.json()
{
  "id": 87,
  "ownerUserId": 37,
  "title": "Design Critique",
  "description": "Patria conduco catena aeger congregatio.",
  "startAt": "2026-05-05T05:14:29.641Z",
  "endAt": "2026-05-06T05:14:29.641Z",
  "isAllDay": true,
  "location": "Cafeteria",
  "attendeeUserIds": [
    12,
    173,
    193,
    14
  ],
  "createdAt": "2026-02-23T13:16:04.405Z",
  "updatedAt": "2026-03-04T19:39:00.084Z"
}
Draftbit