example-data.com

showings / #168

listingId
Townhouse in Jettburgh · Jettburgh
prospectUserId
62
scheduledAt
status
no_show
notes
Talio eaque valde umquam tres.
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/showings/168"
)
showing = res.json()
{
  "id": 168,
  "listingId": 62,
  "prospectUserId": 62,
  "scheduledAt": "2025-11-13T09:15:53.616Z",
  "status": "no_show",
  "notes": "Talio eaque valde umquam tres.",
  "createdAt": "2025-11-07T07:04:55.362Z"
}
Draftbit