example-data.com

calendar-events / #83

Jul
5
Sun

Demo Day

11:11 PM – 11:11 PM

Conference Room B

Terror titulus absconditus tergeo patrocinor anser solutio perferendis culpa atrocitas.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/83"
)
calendar_event = res.json()
{
  "id": 83,
  "ownerUserId": 36,
  "title": "Demo Day",
  "description": "Terror titulus absconditus tergeo patrocinor anser solutio perferendis culpa atrocitas.",
  "startAt": "2026-07-05T23:11:48.419Z",
  "endAt": "2026-07-06T23:11:48.419Z",
  "isAllDay": true,
  "location": "Conference Room B",
  "attendeeUserIds": [
    53
  ],
  "createdAt": "2026-04-01T13:33:05.593Z",
  "updatedAt": "2026-05-11T15:53:57.949Z"
}
Draftbit