example-data.com

calendar-events / #13

May
29
Fri

Engineering All-Hands

5:34 PM – 8:56 PM

Conference Room A

Crebro quasi utor benigne aurum audio abduco.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/13"
)
calendar_event = res.json()
{
  "id": 13,
  "ownerUserId": 5,
  "title": "Engineering All-Hands",
  "description": "Crebro quasi utor benigne aurum audio abduco.",
  "startAt": "2026-05-29T17:34:32.451Z",
  "endAt": "2026-05-29T20:56:52.689Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [
    160,
    54
  ],
  "createdAt": "2026-03-25T09:03:01.059Z",
  "updatedAt": "2026-04-07T00:00:15.153Z"
}
Draftbit