House in Beaumont
house · Beaumont · $632,800
399 Garden Close
Overview
listings / #59
house · Beaumont · $632,800
399 Garden Close
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/59" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/59" ); 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/59"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/59"
)
listing = res.json() Response
{
"id": 59,
"agentUserId": 68,
"propertyType": "house",
"title": "House in Beaumont",
"description": "Odit ager aliquam vigor. Uter eaque conqueror occaecati deleniti canis autus color theca thermae. Voveo pectus tollo.\n\nLaborum subvenio summopere accendo. Ulterius reiciendis crastinus tego verbum taedium caelum sit distinctio administratio. Conculco tergum peccatus tubineus cerno qui cumque thermae non aperiam.",
"price": 632800,
"currency": "USD",
"bedrooms": 0,
"bathrooms": 3.5,
"squareFeet": 621,
"address": "399 Garden Close",
"city": "Beaumont",
"region": "Wisconsin",
"countryAlpha2": "EG",
"latitude": 47.831135,
"longitude": 154.110301,
"status": "active",
"listedAt": "2024-05-23T05:48:08.240Z",
"createdAt": "2024-05-22T23:20:23.137Z",
"updatedAt": "2024-05-25T22:15:10.038Z"
}