example-data.com

calendar-events / #194

Feb
21
Sat

Quarterly Review

4:39 PM – 9:37 PM

Cafeteria

Somniculosus voro careo beatus.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/194"
)
calendar_event = res.json()
{
  "id": 194,
  "ownerUserId": 84,
  "title": "Quarterly Review",
  "description": "Somniculosus voro careo beatus.",
  "startAt": "2026-02-21T16:39:05.549Z",
  "endAt": "2026-02-21T21:37:30.990Z",
  "isAllDay": false,
  "location": "Cafeteria",
  "attendeeUserIds": [
    71,
    37,
    204
  ],
  "createdAt": "2026-03-15T05:50:52.651Z",
  "updatedAt": "2026-03-29T13:01:54.639Z"
}
Draftbit