Townhouse in Fond du Lac
townhouse · Fond du Lac · $3,571,000
185 Veterans Memorial Drive
listings / #158
townhouse · Fond du Lac · $3,571,000
185 Veterans Memorial Drive
curl -sS \
"https://example-data.com/api/v1/listings/158" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/listings/158"
);
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/158"
);
const listing = (await res.json()) as Listing;import requests
res = requests.get(
"https://example-data.com/api/v1/listings/158"
)
listing = res.json() {
"id": 158,
"agentUserId": 24,
"propertyType": "townhouse",
"title": "Townhouse in Fond du Lac",
"description": "Voluptas minus apto caecus. Vicissitudo currus accommodo deduco spiritus benigne assumenda vulnus corrigo. Sperno curatio super stella via ager supellex soluta.\n\nClaudeo talus valetudo tepidus vestrum voluptatem et. Tremo cubicularis uter modi. Concedo concedo suffoco comburo audax temptatio.",
"price": 3571000,
"currency": "USD",
"bedrooms": 1,
"bathrooms": 1,
"squareFeet": 1962,
"address": "185 Veterans Memorial Drive",
"city": "Fond du Lac",
"region": "Washington",
"countryAlpha2": "TR",
"latitude": 34.863109,
"longitude": 86.725568,
"status": "pending",
"listedAt": "2026-04-18T17:32:32.629Z",
"createdAt": "2026-04-18T11:47:17.478Z",
"updatedAt": "2026-05-18T15:45:27.837Z"
}