example-data.com

showings / #142

listingId
Apartment in Terrenceburgh · Terrenceburgh
prospectUserId
111
scheduledAt
status
no_show
notes
Cruciamentum terreo attero officiis deleniti aro.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/142"
)
showing = res.json()
{
  "id": 142,
  "listingId": 54,
  "prospectUserId": 111,
  "scheduledAt": "2026-01-15T00:32:25.204Z",
  "status": "no_show",
  "notes": "Cruciamentum terreo attero officiis deleniti aro.",
  "createdAt": "2026-01-08T10:00:13.889Z"
}
Draftbit