example-data.com

showings / #106

listingId
Townhouse in Irvingborough · Irvingborough
prospectUserId
153
scheduledAt
status
completed
notes
Cresco nisi ars communis facilis neque.
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/showings/106" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/showings/106"
);
const showing = await res.json();
import type { Showing } from "https://example-data.com/types/showings.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/showings/106"
);
const showing = (await res.json()) as Showing;
import requests

res = requests.get(
    "https://example-data.com/api/v1/showings/106"
)
showing = res.json()
{
  "id": 106,
  "listingId": 39,
  "prospectUserId": 153,
  "scheduledAt": "2026-04-28T09:22:31.459Z",
  "status": "completed",
  "notes": "Cresco nisi ars communis facilis neque.",
  "createdAt": "2026-04-30T04:08:29.608Z"
}
Draftbit