example-data.com

calendar-events / #97

Mar
25
Wed

Product Review

1:13 AM – 8:00 AM

Copia curatio bellicus aedificium cilicium crinis torqueo vehemens victus triduana.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/97"
)
calendar_event = res.json()
{
  "id": 97,
  "ownerUserId": 40,
  "title": "Product Review",
  "description": "Copia curatio bellicus aedificium cilicium crinis torqueo vehemens victus triduana.",
  "startAt": "2026-03-25T01:13:33.803Z",
  "endAt": "2026-03-25T08:00:46.710Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    242,
    221,
    222,
    187,
    132
  ],
  "createdAt": "2026-04-02T03:36:11.565Z",
  "updatedAt": "2026-04-30T23:50:22.397Z"
}
Draftbit