example-data.com

calendar-events / #138

May
22
Fri

Budget Review

2:09 PM – 7:49 PM

Tametsi abutor bestia articulus vinculum recusandae accusamus natus.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/138"
)
calendar_event = res.json()
{
  "id": 138,
  "ownerUserId": 58,
  "title": "Budget Review",
  "description": "Tametsi abutor bestia articulus vinculum recusandae accusamus natus.",
  "startAt": "2026-05-22T14:09:06.864Z",
  "endAt": "2026-05-22T19:49:28.578Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    28,
    76,
    177,
    249,
    80
  ],
  "createdAt": "2026-04-07T11:42:00.278Z",
  "updatedAt": "2026-05-09T18:43:36.301Z"
}
Draftbit