example-data.com

calendar-events / #62

Jun
2
Tue

Architecture Review

10:11 AM – 5:56 PM

Trucido acerbitas aggredior comis cubicularis cubitum.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/62"
)
calendar_event = res.json()
{
  "id": 62,
  "ownerUserId": 29,
  "title": "Architecture Review",
  "description": "Trucido acerbitas aggredior comis cubicularis cubitum.",
  "startAt": "2026-06-02T10:11:13.549Z",
  "endAt": "2026-06-02T17:56:35.368Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    176
  ],
  "createdAt": "2026-03-03T07:53:50.811Z",
  "updatedAt": "2026-05-07T13:21:11.493Z"
}
Draftbit