example-data.com

calendar-events / #47

Jun
7
Sun

Demo Day

9:07 PM – 11:55 PM

Microsoft Teams

Vulpes adipisci caveo admiratio demum aranea ascit.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/47"
)
calendar_event = res.json()
{
  "id": 47,
  "ownerUserId": 23,
  "title": "Demo Day",
  "description": "Vulpes adipisci caveo admiratio demum aranea ascit.",
  "startAt": "2026-06-07T21:07:36.828Z",
  "endAt": "2026-06-07T23:55:45.992Z",
  "isAllDay": false,
  "location": "Microsoft Teams",
  "attendeeUserIds": [],
  "createdAt": "2026-04-11T06:05:06.607Z",
  "updatedAt": "2026-05-11T03:28:02.748Z"
}
Draftbit