example-data.com

calendar-events / #236

Jul
2
Thu

Security Training

1:14 AM – 4:00 AM

Main Boardroom

Adipiscor contego cunctatio vulariter.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/236"
)
calendar_event = res.json()
{
  "id": 236,
  "ownerUserId": 101,
  "title": "Security Training",
  "description": "Adipiscor contego cunctatio vulariter.",
  "startAt": "2026-07-02T01:14:50.815Z",
  "endAt": "2026-07-02T04:00:18.537Z",
  "isAllDay": false,
  "location": "Main Boardroom",
  "attendeeUserIds": [
    130,
    248,
    15,
    145
  ],
  "createdAt": "2026-03-27T01:00:08.571Z",
  "updatedAt": "2026-05-05T07:43:22.857Z"
}
Draftbit