Land in Libbiechester
land · Libbiechester · $3,779,600
9959 Omari Shoal
Overview
listings / #156
land · Libbiechester · $3,779,600
9959 Omari Shoal
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/156" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/156" ); 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/156"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/156"
)
listing = res.json() Response
{
"id": 156,
"agentUserId": 24,
"propertyType": "land",
"title": "Land in Libbiechester",
"description": "Absens speciosus casus tertius velociter curso beneficium. Atque ager curiositas tener dolor tendo. Tenuis temptatio adhaero crepusculum deserunt.\n\nAllatus ventito adhaero ulciscor volutabrum tantum comburo vesco. Tergo laborum aro alias. Maxime colo dolor.\n\nCariosus aegrus defungo tergo demergo denique degero vespillo valetudo. Aestivus sed peccatus solutio contigo. Votum voluptatibus aegrotatio terror dolore umerus curia.\n\nUnus temperantia harum eligendi baiulus tergum crapula decens. Patria candidus una comes cultura. Autem audentia deficio terminatio aurum corona.",
"price": 3779600,
"currency": "USD",
"bedrooms": 0,
"bathrooms": 0,
"squareFeet": 730823,
"address": "9959 Omari Shoal",
"city": "Libbiechester",
"region": "Washington",
"countryAlpha2": "AU",
"latitude": 41.048076,
"longitude": -45.927253,
"status": "pending",
"listedAt": "2024-11-22T07:05:54.113Z",
"createdAt": "2024-11-22T02:13:41.167Z",
"updatedAt": "2026-04-14T02:28:10.465Z"
}