example-data.com

calendar-events / #210

May
27
Wed

Design Critique

4:27 AM – 8:04 AM

Google Meet

Fugiat culpa ancilla demitto adflicto decretum voluptate confido stillicidium.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/210"
)
calendar_event = res.json()
{
  "id": 210,
  "ownerUserId": 91,
  "title": "Design Critique",
  "description": "Fugiat culpa ancilla demitto adflicto decretum voluptate confido stillicidium.",
  "startAt": "2026-05-27T04:27:45.259Z",
  "endAt": "2026-05-27T08:04:12.175Z",
  "isAllDay": false,
  "location": "Google Meet",
  "attendeeUserIds": [
    180,
    134,
    73
  ],
  "createdAt": "2026-04-24T23:44:45.408Z",
  "updatedAt": "2026-04-25T02:45:10.159Z"
}
Draftbit