example-data.com

calendar-events / #184

Mar
21
Sat

Team Lunch

9:56 PM – 4:35 AM

Rooftop

Tenus auxilium talio adfectus stella eos vestrum.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/184"
)
calendar_event = res.json()
{
  "id": 184,
  "ownerUserId": 80,
  "title": "Team Lunch",
  "description": "Tenus auxilium talio adfectus stella eos vestrum.",
  "startAt": "2026-03-21T21:56:20.134Z",
  "endAt": "2026-03-22T04:35:07.482Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [
    137,
    128,
    149,
    197,
    54
  ],
  "createdAt": "2026-03-23T00:33:06.592Z",
  "updatedAt": "2026-04-06T21:37:30.546Z"
}
Draftbit