example-data.com

calendar-events / #232

Jul
5
Sun

Quarterly Review

4:33 AM – 5:45 AM

Cafeteria

Suppellex averto surgo excepturi depopulo quas tabernus.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/232"
)
calendar_event = res.json()
{
  "id": 232,
  "ownerUserId": 99,
  "title": "Quarterly Review",
  "description": "Suppellex averto surgo excepturi depopulo quas tabernus.",
  "startAt": "2026-07-05T04:33:53.588Z",
  "endAt": "2026-07-05T05:45:43.357Z",
  "isAllDay": false,
  "location": "Cafeteria",
  "attendeeUserIds": [
    189
  ],
  "createdAt": "2026-05-06T02:42:33.685Z",
  "updatedAt": "2026-05-09T04:57:49.323Z"
}
Draftbit