example-data.com

calendar-events / #115

Mar
15
Sun

Board Meeting

5:00 AM – 7:06 AM

Cafeteria

Absum adaugeo adhuc approbo vix verecundia praesentium tracto ventito.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/115"
)
calendar_event = res.json()
{
  "id": 115,
  "ownerUserId": 48,
  "title": "Board Meeting",
  "description": "Absum adaugeo adhuc approbo vix verecundia praesentium tracto ventito.",
  "startAt": "2026-03-15T05:00:03.046Z",
  "endAt": "2026-03-15T07:06:41.755Z",
  "isAllDay": false,
  "location": "Cafeteria",
  "attendeeUserIds": [
    98
  ],
  "createdAt": "2026-04-14T08:34:55.368Z",
  "updatedAt": "2026-05-07T13:40:05.799Z"
}
Draftbit