example-data.com

calendar-events / #173

Apr
1
Wed

Sales Call

1:24 PM – 1:24 PM

Conference Room A

Thesis contego apostolus cubitum cimentarius clibanus.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/173"
)
calendar_event = res.json()
{
  "id": 173,
  "ownerUserId": 75,
  "title": "Sales Call",
  "description": "Thesis contego apostolus cubitum cimentarius clibanus.",
  "startAt": "2026-04-01T13:24:55.357Z",
  "endAt": "2026-04-02T13:24:55.357Z",
  "isAllDay": true,
  "location": "Conference Room A",
  "attendeeUserIds": [
    179
  ],
  "createdAt": "2026-04-01T13:54:18.479Z",
  "updatedAt": "2026-04-07T22:55:41.843Z"
}
Draftbit