example-data.com

calendar-events / #92

Mar
19
Thu

Team Lunch

4:44 PM – 10:35 PM

Amita civitas deduco collum cultura custodia usque.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/92"
)
calendar_event = res.json()
{
  "id": 92,
  "ownerUserId": 38,
  "title": "Team Lunch",
  "description": "Amita civitas deduco collum cultura custodia usque.",
  "startAt": "2026-03-19T16:44:53.262Z",
  "endAt": "2026-03-19T22:35:55.122Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [
    191,
    154,
    221
  ],
  "createdAt": "2026-03-14T16:27:34.755Z",
  "updatedAt": "2026-03-21T08:35:20.756Z"
}
Draftbit