House in Hubertcester
house · Hubertcester · $1,622,500
8657 Clay Lane
Overview
listings / #25
house · Hubertcester · $1,622,500
8657 Clay Lane
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/25" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/25" ); const listing = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/listings.d.ts https://example-data.com/types/listings.d.ts
import type { Listing } from "./types/listings";
const res = await fetch(
"https://example-data.com/api/v1/listings/25"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/25"
)
listing = res.json() Response
{
"id": 25,
"agentUserId": 104,
"propertyType": "house",
"title": "House in Hubertcester",
"description": "Acquiro clarus despecto adfectus curatio annus ascit substantia ter. Subnecto acerbitas cohaero articulus explicabo tumultus strues subseco crudelis ad. Valeo ipsam thesaurus contra vel stillicidium pauper cum vitae.\n\nArceo capitulus soleo. Patior exercitationem accusantium. Vesco taedium vigor adfectus paulatim callide viriliter terror minima tepesco.",
"price": 1622500,
"currency": "USD",
"bedrooms": 0,
"bathrooms": 4.5,
"squareFeet": 8052,
"address": "8657 Clay Lane",
"city": "Hubertcester",
"region": "Indiana",
"countryAlpha2": "GB",
"latitude": -13.448736,
"longitude": -154.90608,
"status": "sold",
"listedAt": "2026-04-08T08:36:16.712Z",
"createdAt": "2026-04-07T19:49:03.947Z",
"updatedAt": "2026-05-20T14:28:04.865Z"
}