example-data.com

listings / #108

Condo in Williamsonhaven

condo · Williamsonhaven · $4,903,000

9153 Emelia Parks

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/listings/108"
)
listing = res.json()
{
  "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"
}
Draftbit