example-data.com

calendar-events / #95

Mar
30
Mon

Security Training

2:34 PM – 7:29 PM

Adiuvo arca circumvenio officia conculco torrens decipio denuncio comedo triduana.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/95"
)
calendar_event = res.json()
{
  "id": 95,
  "ownerUserId": 39,
  "title": "Security Training",
  "description": "Adiuvo arca circumvenio officia conculco torrens decipio denuncio comedo triduana.",
  "startAt": "2026-03-30T14:34:40.555Z",
  "endAt": "2026-03-30T19:29:35.473Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    5,
    250,
    14,
    65,
    98
  ],
  "createdAt": "2026-04-15T17:34:21.565Z",
  "updatedAt": "2026-04-17T18:28:08.358Z"
}
Draftbit