example-data.com

calendar-events / #41

Jul
26
Sun

Design Critique

11:50 AM – 7:22 PM

Rooftop

Cado cavus valetudo cavus terga subseco certus.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/41"
)
calendar_event = res.json()
{
  "id": 41,
  "ownerUserId": 22,
  "title": "Design Critique",
  "description": "Cado cavus valetudo cavus terga subseco certus.",
  "startAt": "2026-07-26T11:50:51.703Z",
  "endAt": "2026-07-26T19:22:58.752Z",
  "isAllDay": false,
  "location": "Rooftop",
  "attendeeUserIds": [
    31,
    28,
    154
  ],
  "createdAt": "2026-05-16T01:04:13.595Z",
  "updatedAt": "2026-05-16T15:02:59.559Z"
}
Draftbit