House in North Venaview
house · North Venaview · $2,549,000
45397 Pietro Isle
listings / #132
house · North Venaview · $2,549,000
45397 Pietro Isle
curl -sS \
"https://example-data.com/api/v1/listings/132" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/listings/132"
);
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/132"
);
const listing = (await res.json()) as Listing;import requests
res = requests.get(
"https://example-data.com/api/v1/listings/132"
)
listing = res.json() {
"id": 132,
"agentUserId": 30,
"propertyType": "house",
"title": "House in North Venaview",
"description": "Tabgo crastinus caput aureus stella vinitor dolorem modi. Blandior vitiosus vomica fugit canonicus cupressus adimpleo. Thymum illum curia venustas solus iste canonicus vox alo denique.\n\nAsporto altus aestas administratio campana velut. Volva creator sapiente. Defungo placeat natus ea confugo delibero.",
"price": 2549000,
"currency": "USD",
"bedrooms": 2,
"bathrooms": 1,
"squareFeet": 3447,
"address": "45397 Pietro Isle",
"city": "North Venaview",
"region": "Kentucky",
"countryAlpha2": "MA",
"latitude": -37.269545,
"longitude": 28.122499,
"status": "sold",
"listedAt": "2025-07-24T04:13:04.949Z",
"createdAt": "2025-07-23T23:09:06.995Z",
"updatedAt": "2025-08-26T07:47:29.308Z"
}