example-data.com

calendar-events / #201

Jul
29
Wed

Demo Day

8:12 PM – 12:49 AM

Conference Room A

Desparatus damnatio stillicidium convoco uredo optio.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/201"
)
calendar_event = res.json()
{
  "id": 201,
  "ownerUserId": 87,
  "title": "Demo Day",
  "description": "Desparatus damnatio stillicidium convoco uredo optio.",
  "startAt": "2026-07-29T20:12:42.917Z",
  "endAt": "2026-07-30T00:49:36.296Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [
    113,
    239,
    97,
    216,
    248
  ],
  "createdAt": "2026-04-27T13:33:50.006Z",
  "updatedAt": "2026-05-20T07:09:00.208Z"
}
Draftbit