example-data.com

calendar-events / #179

Feb
24
Tue

Strategy Workshop

2:44 AM – 8:02 AM

Zoom

Ancilla assumenda tertius ago nesciunt.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/179"
)
calendar_event = res.json()
{
  "id": 179,
  "ownerUserId": 78,
  "title": "Strategy Workshop",
  "description": "Ancilla assumenda tertius ago nesciunt.",
  "startAt": "2026-02-24T02:44:35.932Z",
  "endAt": "2026-02-24T08:02:25.475Z",
  "isAllDay": false,
  "location": "Zoom",
  "attendeeUserIds": [
    128
  ],
  "createdAt": "2026-03-30T07:59:06.201Z",
  "updatedAt": "2026-04-05T01:26:25.400Z"
}
Draftbit