example-data.com

calendar-events / #49

Jul
11
Sat

Board Meeting

6:19 PM – 8:21 PM

Office - Floor 3

Natus socius demergo eaque comitatus suggero expedita.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/49"
)
calendar_event = res.json()
{
  "id": 49,
  "ownerUserId": 24,
  "title": "Board Meeting",
  "description": "Natus socius demergo eaque comitatus suggero expedita.",
  "startAt": "2026-07-11T18:19:17.788Z",
  "endAt": "2026-07-11T20:21:23.571Z",
  "isAllDay": false,
  "location": "Office - Floor 3",
  "attendeeUserIds": [],
  "createdAt": "2026-03-05T20:22:03.781Z",
  "updatedAt": "2026-03-13T03:57:24.564Z"
}
Draftbit