example-data.com

calendar-events / #11

May
17
Sun

Hiring Interview

11:23 PM – 11:23 PM

Zoom

Bene virga curtus amplexus succedo terga fugiat.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/11"
)
calendar_event = res.json()
{
  "id": 11,
  "ownerUserId": 4,
  "title": "Hiring Interview",
  "description": "Bene virga curtus amplexus succedo terga fugiat.",
  "startAt": "2026-05-17T23:23:11.696Z",
  "endAt": "2026-05-18T23:23:11.696Z",
  "isAllDay": true,
  "location": "Zoom",
  "attendeeUserIds": [
    112,
    162,
    1
  ],
  "createdAt": "2026-04-13T10:38:52.252Z",
  "updatedAt": "2026-04-14T22:11:09.339Z"
}
Draftbit