example-data.com

calendar-events / #99

Mar
18
Wed

Hiring Interview

5:09 AM – 10:10 AM

Main Boardroom

Vetus crustulum ducimus asper aiunt asporto.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/99"
)
calendar_event = res.json()
{
  "id": 99,
  "ownerUserId": 40,
  "title": "Hiring Interview",
  "description": "Vetus crustulum ducimus asper aiunt asporto.",
  "startAt": "2026-03-18T05:09:19.121Z",
  "endAt": "2026-03-18T10:10:55.329Z",
  "isAllDay": false,
  "location": "Main Boardroom",
  "attendeeUserIds": [
    147,
    99,
    5
  ],
  "createdAt": "2026-05-16T14:00:59.788Z",
  "updatedAt": "2026-05-19T10:45:02.047Z"
}
Draftbit