example-data.com

showings / #72

listingId
House in Quitzoncester · Quitzoncester
prospectUserId
190
scheduledAt
status
cancelled
notes
Repellendus ceno curriculum.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/72"
)
showing = res.json()
{
  "id": 72,
  "listingId": 23,
  "prospectUserId": 190,
  "scheduledAt": "2026-03-11T13:28:44.780Z",
  "status": "cancelled",
  "notes": "Repellendus ceno curriculum.",
  "createdAt": "2026-03-18T11:53:18.513Z"
}
Draftbit