example-data.com

showings / #181

listingId
House in Blandaburgh · Blandaburgh
prospectUserId
147
scheduledAt
status
cancelled
notes
Accusamus ex ulciscor cribro administratio.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/181"
)
showing = res.json()
{
  "id": 181,
  "listingId": 67,
  "prospectUserId": 147,
  "scheduledAt": "2026-04-26T04:09:30.647Z",
  "status": "cancelled",
  "notes": "Accusamus ex ulciscor cribro administratio.",
  "createdAt": "2026-03-28T20:54:11.409Z"
}
Draftbit