example-data.com

calendar-events / #227

Jul
25
Sat

Design Critique

5:06 AM – 11:53 AM

Google Meet

Aggredior ascisco adeptio abeo.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/227"
)
calendar_event = res.json()
{
  "id": 227,
  "ownerUserId": 96,
  "title": "Design Critique",
  "description": "Aggredior ascisco adeptio abeo.",
  "startAt": "2026-07-25T05:06:34.859Z",
  "endAt": "2026-07-25T11:53:30.189Z",
  "isAllDay": false,
  "location": "Google Meet",
  "attendeeUserIds": [
    116,
    190,
    115,
    17
  ],
  "createdAt": "2026-03-10T19:26:18.516Z",
  "updatedAt": "2026-04-29T00:45:59.009Z"
}
Draftbit