Condo in Weissnatworth
condo · Weissnatworth · $1,324,800
39351 Kuhlman Village
Overview
listings / #96
condo · Weissnatworth · $1,324,800
39351 Kuhlman Village
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/96" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/96" ); const listing = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/listings.d.ts https://example-data.com/types/listings.d.ts
import type { Listing } from "./types/listings";
const res = await fetch(
"https://example-data.com/api/v1/listings/96"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/96"
)
listing = res.json() Response
{
"id": 96,
"agentUserId": 36,
"propertyType": "condo",
"title": "Condo in Weissnatworth",
"description": "Tutamen thorax patrocinor nesciunt ratione odit delinquo tergeo. Voluptatem vicinus repellendus aqua deleo. Aggredior adnuo virgo coma confugo animi tactus.\n\nRepellat copiose canto damnatio subvenio. Cupiditate vesper utrum desino tenus creo. Triduana amo pel adstringo temptatio magni aggredior trans constans.\n\nDenego trans amaritudo administratio. Torrens suspendo curso auditor consectetur dedico nemo. Aduro tonsor quisquam coadunatio.",
"price": 1324800,
"currency": "USD",
"bedrooms": 0,
"bathrooms": 2,
"squareFeet": 7749,
"address": "39351 Kuhlman Village",
"city": "Weissnatworth",
"region": "Washington",
"countryAlpha2": "EG",
"latitude": 11.198668,
"longitude": 117.237398,
"status": "off_market",
"listedAt": "2025-03-08T07:53:47.322Z",
"createdAt": "2025-03-07T23:43:50.480Z",
"updatedAt": "2026-01-22T16:53:20.161Z"
}