House in Lake Stanton
house · Lake Stanton · $3,442,800
860 Hoeger Row
listings / #153
house · Lake Stanton · $3,442,800
860 Hoeger Row
curl -sS \
"https://example-data.com/api/v1/listings/153" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/listings/153"
);
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/153"
);
const listing = (await res.json()) as Listing;import requests
res = requests.get(
"https://example-data.com/api/v1/listings/153"
)
listing = res.json() {
"id": 153,
"agentUserId": 200,
"propertyType": "house",
"title": "House in Lake Stanton",
"description": "Defero vae contego usus umquam aranea vinco. Auxilium cohors templum brevis verbera deprecator canto. Attollo ascisco inflammatio capillus compello tripudio.\n\nRepellat defessus rerum vilicus testimonium vester. Despecto umbra umbra congregatio aro ultra coaegresco. Sum auctus adfero voluptatum approbo talus.\n\nClementia ars impedit bardus adhaero baiulus defungo sufficio. Solus iure occaecati stabilis crur depraedor sed tracto nisi tametsi. Audeo depraedor tunc cribro caput deporto venio defero crudelis.",
"price": 3442800,
"currency": "USD",
"bedrooms": 2,
"bathrooms": 0.5,
"squareFeet": 6587,
"address": "860 Hoeger Row",
"city": "Lake Stanton",
"region": "Arkansas",
"countryAlpha2": "PH",
"latitude": -48.76907,
"longitude": 117.914182,
"status": "active",
"listedAt": "2024-06-14T11:53:19.624Z",
"createdAt": "2024-06-13T19:38:25.296Z",
"updatedAt": "2025-07-30T09:16:22.253Z"
}