example-data.com

calendar-events / #182

Jun
5
Fri

Product Review

5:18 AM – 11:49 AM

Arguo verecundia tyrannus coniecto.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/182"
)
calendar_event = res.json()
{
  "id": 182,
  "ownerUserId": 79,
  "title": "Product Review",
  "description": "Arguo verecundia tyrannus coniecto.",
  "startAt": "2026-06-05T05:18:56.393Z",
  "endAt": "2026-06-05T11:49:22.642Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    192,
    249,
    74,
    77
  ],
  "createdAt": "2026-03-26T07:17:04.821Z",
  "updatedAt": "2026-04-06T14:33:04.110Z"
}
Draftbit