example-data.com

calendar-events / #102

Mar
8
Sun

Engineering All-Hands

7:10 PM – 2:26 AM

Conference Room A

Conscendo esse spiritus arguo crepusculum corroboro.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/102"
)
calendar_event = res.json()
{
  "id": 102,
  "ownerUserId": 42,
  "title": "Engineering All-Hands",
  "description": "Conscendo esse spiritus arguo crepusculum corroboro.",
  "startAt": "2026-03-08T19:10:41.607Z",
  "endAt": "2026-03-09T02:26:56.579Z",
  "isAllDay": false,
  "location": "Conference Room A",
  "attendeeUserIds": [],
  "createdAt": "2026-02-26T19:15:00.875Z",
  "updatedAt": "2026-05-09T18:07:48.687Z"
}
Draftbit