example-data.com

calendar-events / #117

May
23
Sat

Product Review

10:30 AM – 10:30 AM

Cafeteria

Delibero suffragium audax video admoveo artificiose sumptus deorsum commodi.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/117"
)
calendar_event = res.json()
{
  "id": 117,
  "ownerUserId": 49,
  "title": "Product Review",
  "description": "Delibero suffragium audax video admoveo artificiose sumptus deorsum commodi.",
  "startAt": "2026-05-23T10:30:28.950Z",
  "endAt": "2026-05-24T10:30:28.950Z",
  "isAllDay": true,
  "location": "Cafeteria",
  "attendeeUserIds": [
    212,
    119,
    134
  ],
  "createdAt": "2026-04-23T18:52:22.888Z",
  "updatedAt": "2026-05-07T16:19:54.085Z"
}
Draftbit