example-data.com

calendar-events / #96

Jul
17
Fri

Team Standup

7:24 PM – 9:18 PM

Rooftop

Cubicularis amitto super cotidie textus.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/96"
)
calendar_event = res.json()
{
  "id": 96,
  "ownerUserId": 39,
  "title": "Team Standup",
  "description": "Cubicularis amitto super cotidie textus.",
  "startAt": "2026-07-17T19:24:36.435Z",
  "endAt": "2026-07-17T21:18:45.696Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [
    110,
    1,
    248,
    21
  ],
  "createdAt": "2026-04-01T08:27:51.035Z",
  "updatedAt": "2026-04-29T19:50:18.792Z"
}
Draftbit