example-data.com

calendar-events / #85

Jul
1
Wed

Sprint Planning

10:15 AM – 11:21 AM

Main Boardroom

Copiose allatus deputo ascisco cibus.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/85"
)
calendar_event = res.json()
{
  "id": 85,
  "ownerUserId": 36,
  "title": "Sprint Planning",
  "description": "Copiose allatus deputo ascisco cibus.",
  "startAt": "2026-07-01T10:15:26.703Z",
  "endAt": "2026-07-01T11:21:21.301Z",
  "isAllDay": false,
  "location": "Main Boardroom",
  "attendeeUserIds": [
    166,
    145,
    143,
    8
  ],
  "createdAt": "2026-04-15T06:50:50.977Z",
  "updatedAt": "2026-04-17T23:17:38.036Z"
}
Draftbit