example-data.com

calendar-events / #3

Jun
5
Fri

Demo Day

8:03 AM – 1:44 PM

Vere coniuratio cupiditas usitas centum venustas vigor damnatio decet.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/3"
)
calendar_event = res.json()
{
  "id": 3,
  "ownerUserId": 1,
  "title": "Demo Day",
  "description": "Vere coniuratio cupiditas usitas centum venustas vigor damnatio decet.",
  "startAt": "2026-06-05T08:03:53.462Z",
  "endAt": "2026-06-05T13:44:34.646Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    158,
    98,
    28
  ],
  "createdAt": "2026-03-23T18:06:51.098Z",
  "updatedAt": "2026-04-02T08:11:15.367Z"
}
Draftbit