example-data.com

calendar-events / #125

Mar
16
Mon

Board Meeting

4:10 PM – 4:10 PM

Office - Floor 3

Ademptio amita labore vapulus aranea vicissitudo vilicus tubineus vulgivagus porro.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/125"
)
calendar_event = res.json()
{
  "id": 125,
  "ownerUserId": 53,
  "title": "Board Meeting",
  "description": "Ademptio amita labore vapulus aranea vicissitudo vilicus tubineus vulgivagus porro.",
  "startAt": "2026-03-16T16:10:25.556Z",
  "endAt": "2026-03-17T16:10:25.556Z",
  "isAllDay": true,
  "location": "Office - Floor 3",
  "attendeeUserIds": [
    79
  ],
  "createdAt": "2026-03-28T15:15:12.791Z",
  "updatedAt": "2026-04-12T13:45:14.438Z"
}
Draftbit