example-data.com

calendar-events / #233

May
14
Thu

Hiring Interview

2:10 PM – 4:24 PM

Facilis amicitia anser alienus adflicto vox delectatio ipsum.

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/calendar-events/233"
)
calendar_event = res.json()
{
  "id": 233,
  "ownerUserId": 99,
  "title": "Hiring Interview",
  "description": "Facilis amicitia anser alienus adflicto vox delectatio ipsum.",
  "startAt": "2026-05-14T14:10:07.458Z",
  "endAt": "2026-05-14T16:24:25.537Z",
  "isAllDay": false,
  "location": null,
  "attendeeUserIds": [],
  "createdAt": "2026-03-15T01:20:32.612Z",
  "updatedAt": "2026-04-25T10:18:15.031Z"
}
Draftbit