House in New Otiliatown
house · New Otiliatown · $4,258,000
8220 Gordon Road
Overview
listings / #2
house · New Otiliatown · $4,258,000
8220 Gordon Road
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/2" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/2" ); 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/2"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/2"
)
listing = res.json() Response
{
"id": 2,
"agentUserId": 55,
"propertyType": "house",
"title": "House in New Otiliatown",
"description": "Nostrum sponte caterva. Advoco claustrum alo ipsum thymum sortitus desidero alter. Valetudo canto cohibeo arcesso.\n\nDelectatio ancilla absconditus attero coniecto. Sapiente volva vivo bestia cometes vos aperiam. Temptatio tondeo aliqua corrupti civis.\n\nSoluta defendo caelestis volo vaco ater. Una tempora inventore. Vergo artificiose uterque.\n\nComminor aptus aqua degero totam demitto consequuntur tamen vita custodia. Non antepono arma pecus maxime caput verto. Angelus cernuus apostolus a caute tergo video.",
"price": 4258000,
"currency": "USD",
"bedrooms": 3,
"bathrooms": 4.5,
"squareFeet": 2438,
"address": "8220 Gordon Road",
"city": "New Otiliatown",
"region": "Tennessee",
"countryAlpha2": "CN",
"latitude": 54.900214,
"longitude": 164.593013,
"status": "sold",
"listedAt": "2026-03-21T23:54:56.531Z",
"createdAt": "2026-03-21T06:02:19.265Z",
"updatedAt": "2026-04-27T10:09:48.404Z"
}