Townhouse in Gerholdstead
townhouse · Gerholdstead · $4,361,400
8441 Brooks Landing
Overview
listings / #149
townhouse · Gerholdstead · $4,361,400
8441 Brooks Landing
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/149" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/149" ); 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/149"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/149"
)
listing = res.json() Response
{
"id": 149,
"agentUserId": 204,
"propertyType": "townhouse",
"title": "Townhouse in Gerholdstead",
"description": "Utrum stillicidium vobis quae argentum thymbra. Utilis acsi sponte vallum valetudo error adficio totus. Ciminatio quam adamo degusto vulariter corroboro conor degero.\n\nCorrumpo dedecor acer suasoria ater suus defero cariosus. Atrocitas avarus vehemens creta ulciscor sopor tabgo apud. Timor voro caste cultura.",
"price": 4361400,
"currency": "USD",
"bedrooms": 5,
"bathrooms": 1,
"squareFeet": 4425,
"address": "8441 Brooks Landing",
"city": "Gerholdstead",
"region": "Minnesota",
"countryAlpha2": "FI",
"latitude": 37.786185,
"longitude": -149.690626,
"status": "active",
"listedAt": "2025-05-12T16:26:00.993Z",
"createdAt": "2025-05-12T12:41:50.891Z",
"updatedAt": "2025-10-12T23:38:38.489Z"
}