example-data.com

listings / #109

Townhouse in Kunzestad

townhouse · Kunzestad · $2,774,300

41853 Lee Street

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/listings/109" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/listings/109"
);
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/109"
);
const listing = (await res.json()) as Listing;
import requests

res = requests.get(
    "https://example-data.com/api/v1/listings/109"
)
listing = res.json()
{
  "id": 109,
  "agentUserId": 26,
  "propertyType": "townhouse",
  "title": "Townhouse in Kunzestad",
  "description": "Usitas suasoria brevis. Caries truculenter acquiro rem. Strues decor suscipit.\n\nCurso appello decens admoneo advenio subito timidus. Vapulus adinventitias ducimus allatus candidus accendo taceo totam. Vigilo beatus aggero atrox quod advenio ubi arbitro patior.",
  "price": 2774300,
  "currency": "USD",
  "bedrooms": 5,
  "bathrooms": 3,
  "squareFeet": 8677,
  "address": "41853 Lee Street",
  "city": "Kunzestad",
  "region": "New Mexico",
  "countryAlpha2": "BE",
  "latitude": -37.702186,
  "longitude": 60.406782,
  "status": "active",
  "listedAt": "2025-08-07T20:21:56.393Z",
  "createdAt": "2025-08-07T01:33:28.650Z",
  "updatedAt": "2025-08-28T13:50:09.960Z"
}
Draftbit