House in Westfield
house · Westfield · $1,535,000
15004 Hubert Mount
listings / #170
house · Westfield · $1,535,000
15004 Hubert Mount
curl -sS \
"https://example-data.com/api/v1/listings/170" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/listings/170"
);
const listing = await res.json();import type { Listing } from "https://example-data.com/types/listings.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/listings/170"
);
const listing = (await res.json()) as Listing;import requests
res = requests.get(
"https://example-data.com/api/v1/listings/170"
)
listing = res.json() {
"id": 170,
"agentUserId": 23,
"propertyType": "house",
"title": "House in Westfield",
"description": "Accendo strenuus utroque soluta atrox sollicito audax nulla quam. Voluptas campana ad cruciamentum curso laboriosam desidero tam spiculum solum. Vinculum repellat tutis allatus cribro.\n\nColor careo thesaurus umquam comminor strues. Adsum argentum cetera ventito placeat deficio valens alienus deorsum arx. Contabesco catena ulciscor capitulus conculco dicta.",
"price": 1535000,
"currency": "USD",
"bedrooms": 2,
"bathrooms": 0.5,
"squareFeet": 2381,
"address": "15004 Hubert Mount",
"city": "Westfield",
"region": "Texas",
"countryAlpha2": "VN",
"latitude": 44.857545,
"longitude": 136.923892,
"status": "active",
"listedAt": "2025-04-09T06:58:30.644Z",
"createdAt": "2025-04-08T12:14:07.053Z",
"updatedAt": "2025-06-02T12:44:09.520Z"
}