Condo in Buckridgehaven
condo · Buckridgehaven · $4,446,500
821 Neil Overpass
Overview
listings / #174
condo · Buckridgehaven · $4,446,500
821 Neil Overpass
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/174" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/174" ); 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/174"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/174"
)
listing = res.json() Response
{
"id": 174,
"agentUserId": 207,
"propertyType": "condo",
"title": "Condo in Buckridgehaven",
"description": "Altus expedita tolero templum voluptatum appositus decumbo volutabrum articulus votum. Sui trado inventore. Thermae itaque aegrus accusamus sperno cur condico complectus carmen.\n\nOccaecati trepide perspiciatis turba culpo artificiose amor ater nihil. Confero torrens dicta viduo. Explicabo ante vacuus eum.",
"price": 4446500,
"currency": "USD",
"bedrooms": 0,
"bathrooms": 1,
"squareFeet": 8865,
"address": "821 Neil Overpass",
"city": "Buckridgehaven",
"region": "South Dakota",
"countryAlpha2": "CN",
"latitude": 0.230876,
"longitude": 50.239988,
"status": "pending",
"listedAt": "2024-08-28T23:59:55.981Z",
"createdAt": "2024-08-28T03:41:54.392Z",
"updatedAt": "2025-07-03T20:11:18.173Z"
}