example-data.com

calendar-events / #191

Aug
18
Tue

Engineering All-Hands

4:26 AM – 10:21 AM

Office - Floor 3

Victus defluo magni auditor.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/191"
)
calendar_event = res.json()
{
  "id": 191,
  "ownerUserId": 84,
  "title": "Engineering All-Hands",
  "description": "Victus defluo magni auditor.",
  "startAt": "2026-08-18T04:26:16.652Z",
  "endAt": "2026-08-18T10:21:24.247Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    25,
    30,
    131,
    246
  ],
  "createdAt": "2026-04-09T17:59:18.252Z",
  "updatedAt": "2026-04-23T19:39:15.595Z"
}
Draftbit