Condo in Billings
condo · Billings · $4,619,400
4592 Honeysuckle Close
Overview
listings / #76
condo · Billings · $4,619,400
4592 Honeysuckle Close
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/76" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/76" ); 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/76"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/76"
)
listing = res.json() Response
{
"id": 76,
"agentUserId": 77,
"propertyType": "condo",
"title": "Condo in Billings",
"description": "Supra cenaculum porro thorax amita amissio. Spiritus calcar dolor copia. Velit voco adipiscor apto consequuntur comes denego caput.\n\nTeneo aranea corrupti desidero paens quia debilito tantum ancilla. Terminatio thorax amicitia aggero provident alveus subiungo catena ultra apto. Copia absconditus tergiversatio animus commodo.",
"price": 4619400,
"currency": "USD",
"bedrooms": 4,
"bathrooms": 4,
"squareFeet": 11166,
"address": "4592 Honeysuckle Close",
"city": "Billings",
"region": "Delaware",
"countryAlpha2": "MY",
"latitude": 38.027064,
"longitude": 58.676246,
"status": "sold",
"listedAt": "2025-03-21T18:45:20.591Z",
"createdAt": "2025-03-21T06:09:19.796Z",
"updatedAt": "2026-04-05T04:34:34.418Z"
}