example-data.com

calendar-events / #163

Jun
11
Thu

Strategy Workshop

11:43 PM – 3:15 AM

Cafeteria

Catena cibo vigor taceo amicitia.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/163"
)
calendar_event = res.json()
{
  "id": 163,
  "ownerUserId": 70,
  "title": "Strategy Workshop",
  "description": "Catena cibo vigor taceo amicitia.",
  "startAt": "2026-06-11T23:43:59.365Z",
  "endAt": "2026-06-12T03:15:58.446Z",
  "isAllDay": false,
  "location": "Cafeteria",
  "attendeeUserIds": [
    93,
    136
  ],
  "createdAt": "2026-04-06T08:47:20.088Z",
  "updatedAt": "2026-04-13T09:15:08.144Z"
}
Draftbit