House in Blandaburgh
house · Blandaburgh · $1,552,800
810 Hirthe Extensions
Overview
listings / #67
house · Blandaburgh · $1,552,800
810 Hirthe Extensions
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/67" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/67" ); 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/67"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/67"
)
listing = res.json() Response
{
"id": 67,
"agentUserId": 38,
"propertyType": "house",
"title": "House in Blandaburgh",
"description": "Appello suggero vociferor. Claro delectatio adimpleo vindico communis celer angelus denuncio. Desidero textor vinum speculum somnus mollitia.\n\nThesis bardus cursim aperte. Theca tantillus defluo curriculum cupio summopere capio colligo colo. Dicta desolo sub tum deleo vitae vulgaris ater curia.\n\nTremo iste vigilo deduco dolor. Subvenio commemoro terreo denuo. Altus appello sumo vetus volaticus perferendis.\n\nVolaticus totidem facere conculco defero. Sperno cupio eveniet vigor. Allatus dapifer vitae supellex verto cerno.",
"price": 1552800,
"currency": "USD",
"bedrooms": 6,
"bathrooms": 3.5,
"squareFeet": 4441,
"address": "810 Hirthe Extensions",
"city": "Blandaburgh",
"region": "Idaho",
"countryAlpha2": "IT",
"latitude": -3.500822,
"longitude": -20.471109,
"status": "pending",
"listedAt": "2024-08-19T21:31:32.769Z",
"createdAt": "2024-08-19T18:50:41.689Z",
"updatedAt": "2025-04-10T22:46:20.044Z"
}