example-data.com

calendar-events / #104

Jun
23
Tue

Design Critique

9:19 AM – 3:06 PM

Claudeo aufero quae.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/104"
)
calendar_event = res.json()
{
  "id": 104,
  "ownerUserId": 43,
  "title": "Design Critique",
  "description": "Claudeo aufero quae.",
  "startAt": "2026-06-23T09:19:35.697Z",
  "endAt": "2026-06-23T15:06:44.350Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    52,
    232
  ],
  "createdAt": "2026-05-06T22:29:24.652Z",
  "updatedAt": "2026-05-11T00:33:39.812Z"
}
Draftbit