example-data.com

showings / #108

listingId
Townhouse in Irvingborough · Irvingborough
prospectUserId
84
scheduledAt
status
scheduled
notes
Civitas architecto arto utrum.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/108"
)
showing = res.json()
{
  "id": 108,
  "listingId": 39,
  "prospectUserId": 84,
  "scheduledAt": "2026-05-22T15:16:29.072Z",
  "status": "scheduled",
  "notes": "Civitas architecto arto utrum.",
  "createdAt": "2026-04-28T22:50:20.905Z"
}
Draftbit