example-data.com

calendar-events / #230

May
1
Fri

Architecture Review

4:16 AM – 4:16 AM

Office - Floor 3

Apparatus curatio nisi.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/230"
)
calendar_event = res.json()
{
  "id": 230,
  "ownerUserId": 98,
  "title": "Architecture Review",
  "description": "Apparatus curatio nisi.",
  "startAt": "2026-05-01T04:16:20.989Z",
  "endAt": "2026-05-02T04:16:20.989Z",
  "isAllDay": true,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    64,
    47,
    142,
    84
  ],
  "createdAt": "2026-03-14T04:25:55.436Z",
  "updatedAt": "2026-05-20T02:35:39.553Z"
}
Draftbit