example-data.com

listings / #164

House in New Ole

house · New Ole · $780,300

4443 Greenway

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/listings/164"
)
listing = res.json()
{
  "id": 164,
  "agentUserId": 21,
  "propertyType": "house",
  "title": "House in New Ole",
  "description": "Tyrannus tepidus acer cerno adsidue conservo vulnus cui unde aduro. Vomito auctus anser volubilis ultio laborum cuius vita autem perferendis. Cernuus agnitio comptus.\n\nEaque capio antiquus volo baiulus tracto demoror celebrer uxor. Sperno carmen caecus verbum tendo defaeco vulnero tersus urbanus. Terra acsi paulatim sunt compono crux temptatio coma officia.\n\nIncidunt possimus tondeo terminatio terga delibero custodia ex contra calamitas. Volup voro aveho creber venia. Depono vilitas cognomen quas tabernus ipsa carpo dicta cupressus.",
  "price": 780300,
  "currency": "USD",
  "bedrooms": 1,
  "bathrooms": 3.5,
  "squareFeet": 11848,
  "address": "4443 Greenway",
  "city": "New Ole",
  "region": "Hawaii",
  "countryAlpha2": "GB",
  "latitude": -46.722889,
  "longitude": -168.49281,
  "status": "sold",
  "listedAt": "2026-05-04T08:06:58.180Z",
  "createdAt": "2026-05-03T13:37:56.417Z",
  "updatedAt": "2026-05-11T17:37:04.102Z"
}
Draftbit