Townhouse in Lake Velvaland
townhouse · Lake Velvaland · $1,484,600
73205 Manor Way
listings / #130
townhouse · Lake Velvaland · $1,484,600
73205 Manor Way
curl -sS \
"https://example-data.com/api/v1/listings/130" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/listings/130"
);
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/130"
);
const listing = (await res.json()) as Listing;import requests
res = requests.get(
"https://example-data.com/api/v1/listings/130"
)
listing = res.json() {
"id": 130,
"agentUserId": 72,
"propertyType": "townhouse",
"title": "Townhouse in Lake Velvaland",
"description": "Curvo sub territo esse versus quidem sublime animi acies. Ancilla urbanus ascisco amplus agnitio. Attero color debitis carbo adipisci conor.\n\nCurriculum tego strenuus accusamus. Curiositas cerno circumvenio ratione verus thalassinus laudantium cupiditas. Absque solitudo argentum.",
"price": 1484600,
"currency": "USD",
"bedrooms": 5,
"bathrooms": 2,
"squareFeet": 4719,
"address": "73205 Manor Way",
"city": "Lake Velvaland",
"region": "Kentucky",
"countryAlpha2": "ID",
"latitude": -42.230116,
"longitude": -154.813553,
"status": "active",
"listedAt": "2026-03-28T20:07:33.098Z",
"createdAt": "2026-03-27T21:05:30.716Z",
"updatedAt": "2026-05-10T22:11:14.263Z"
}