Condo in Williamsonhaven
condo · Williamsonhaven · $4,903,000
9153 Emelia Parks
Overview
listings / #108
condo · Williamsonhaven · $4,903,000
9153 Emelia Parks
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/108" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/108" ); 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/108"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/108"
)
listing = res.json() Response
{
"id": 108,
"agentUserId": 5,
"propertyType": "condo",
"title": "Condo in Williamsonhaven",
"description": "Spes allatus acsi tot. Vestrum victoria depromo. Subnecto valetudo auctor ultra.\n\nTego defetiscor cibus color corrupti deinde taceo verecundia. Defleo a dens dolorem error suus caste celebrer. Baiulus ancilla aequus deserunt.",
"price": 4903000,
"currency": "USD",
"bedrooms": 5,
"bathrooms": 2.5,
"squareFeet": 3512,
"address": "9153 Emelia Parks",
"city": "Williamsonhaven",
"region": "Nebraska",
"countryAlpha2": "IL",
"latitude": -29.470665,
"longitude": -143.658403,
"status": "active",
"listedAt": "2025-05-17T08:56:19.153Z",
"createdAt": "2025-05-16T22:57:56.315Z",
"updatedAt": "2026-03-17T22:51:15.148Z"
}