example-data.com

listings / #48

Townhouse in North General

townhouse · North General · $4,038,800

565 Aufderhar Islands

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/listings/48"
)
listing = res.json()
{
  "id": 48,
  "agentUserId": 130,
  "propertyType": "townhouse",
  "title": "Townhouse in North General",
  "description": "Desparatus valde quo. Chirographum nemo adeo stips. Reprehenderit temporibus illo tamisium somniculosus acidus cibo exercitationem terreo.\n\nNihil stabilis iusto cultellus claudeo contigo speculum pecco. Viriliter articulus apparatus thermae alius arbustum tergeo. Traho pauper comprehendo blanditiis anser sub ambitus currus.",
  "price": 4038800,
  "currency": "USD",
  "bedrooms": 3,
  "bathrooms": 3,
  "squareFeet": 10228,
  "address": "565 Aufderhar Islands",
  "city": "North General",
  "region": "Michigan",
  "countryAlpha2": "PK",
  "latitude": 9.528874,
  "longitude": -29.69888,
  "status": "sold",
  "listedAt": "2024-08-16T05:22:42.101Z",
  "createdAt": "2024-08-15T08:45:48.451Z",
  "updatedAt": "2025-05-21T05:44:46.414Z"
}
Draftbit