example-data.com

showings / #119

listingId
House in Hammesboro · Hammesboro
prospectUserId
229
scheduledAt
status
scheduled
notes
Ut arceo aliquam eos temeritas credo corroboro statua suus capillus.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/119"
)
showing = res.json()
{
  "id": 119,
  "listingId": 44,
  "prospectUserId": 229,
  "scheduledAt": "2026-01-29T08:05:45.643Z",
  "status": "scheduled",
  "notes": "Ut arceo aliquam eos temeritas credo corroboro statua suus capillus.",
  "createdAt": "2026-02-03T10:19:46.850Z"
}
Draftbit