example-data.com

listings / #177

Townhouse in Dooleytown

townhouse · Dooleytown · $3,805,500

25318 Marlborough Road

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/listings/177"
)
listing = res.json()
{
  "id": 177,
  "agentUserId": 207,
  "propertyType": "townhouse",
  "title": "Townhouse in Dooleytown",
  "description": "Minus sumptus basium vaco cultellus torrens suppellex abbas sto. Ciminatio paens cultura atrocitas tamisium sollicito. Reprehenderit stipes absorbeo ventosus vere dolorem asperiores voro.\n\nVivo cariosus agnosco thymbra adversus voluptatem confero creator pecco. Arx ceno debilito ulciscor attonbitus audax delego abeo varietas. Denuncio enim ullam suffragium canto cogito ultio tempora.",
  "price": 3805500,
  "currency": "USD",
  "bedrooms": 6,
  "bathrooms": 0.5,
  "squareFeet": 7014,
  "address": "25318 Marlborough Road",
  "city": "Dooleytown",
  "region": "Tennessee",
  "countryAlpha2": "NZ",
  "latitude": 7.521634,
  "longitude": -145.999274,
  "status": "active",
  "listedAt": "2025-05-25T02:48:29.047Z",
  "createdAt": "2025-05-24T05:26:22.796Z",
  "updatedAt": "2026-02-07T16:45:55.018Z"
}
Draftbit