example-data.com

calendar-events / #213

Apr
9
Thu

Architecture Review

9:35 AM – 1:50 PM

Defetiscor cohors eaque consuasor ancilla barba.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/213"
)
calendar_event = res.json()
{
  "id": 213,
  "ownerUserId": 92,
  "title": "Architecture Review",
  "description": "Defetiscor cohors eaque consuasor ancilla barba.",
  "startAt": "2026-04-09T09:35:02.320Z",
  "endAt": "2026-04-09T13:50:51.447Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [],
  "createdAt": "2026-04-03T14:09:34.849Z",
  "updatedAt": "2026-04-07T01:31:46.989Z"
}
Draftbit