example-data.com

calendar-events / #150

Mar
6
Fri

Security Training

12:32 AM – 8:02 AM

Sustineo adeptio credo cilicium compello somnus conscendo ademptio coniecto ara.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/150"
)
calendar_event = res.json()
{
  "id": 150,
  "ownerUserId": 65,
  "title": "Security Training",
  "description": "Sustineo adeptio credo cilicium compello somnus conscendo ademptio coniecto ara.",
  "startAt": "2026-03-06T00:32:09.750Z",
  "endAt": "2026-03-06T08:02:02.579Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    223,
    197,
    32
  ],
  "createdAt": "2026-03-08T19:51:04.415Z",
  "updatedAt": "2026-05-14T08:07:17.496Z"
}
Draftbit