example-data.com

listings / #74

Townhouse in Lake Cheyenne

townhouse · Lake Cheyenne · $4,216,100

34448 Lakin Falls

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/listings/74"
)
listing = res.json()
{
  "id": 74,
  "agentUserId": 219,
  "propertyType": "townhouse",
  "title": "Townhouse in Lake Cheyenne",
  "description": "Decretum arguo terreo aggredior mollitia magni. Confero triumphus atavus quos considero abduco viridis aveho cito defendo. Earum depromo voco ascisco cibus dedico argumentum tenuis thorax.\n\nUbi denique summa. Sequi coma decet bellicus decet autem auctor. Blandior acies strenuus denuncio depromo saepe.\n\nTergiversatio strues acies. Damnatio apostolus currus defero ea acervus tersus. Considero thesaurus delicate credo comparo abstergo asporto compello.",
  "price": 4216100,
  "currency": "USD",
  "bedrooms": 4,
  "bathrooms": 2.5,
  "squareFeet": 9514,
  "address": "34448 Lakin Falls",
  "city": "Lake Cheyenne",
  "region": "Connecticut",
  "countryAlpha2": "NO",
  "latitude": -52.991678,
  "longitude": -170.422217,
  "status": "active",
  "listedAt": "2026-05-19T12:00:24.288Z",
  "createdAt": "2026-05-18T18:36:07.800Z",
  "updatedAt": "2026-05-20T09:38:45.450Z"
}
Draftbit