House in Henderson
house · Henderson · $3,674,600
6912 Gregory Junctions
Overview
listings / #71
house · Henderson · $3,674,600
6912 Gregory Junctions
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/71" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/71" ); 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/71"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/71"
)
listing = res.json() Response
{
"id": 71,
"agentUserId": 219,
"propertyType": "house",
"title": "House in Henderson",
"description": "Defungo tribuo rerum sponte credo deleo. Tamquam allatus adipiscor vox ultra. Substantia soleo quibusdam aedificium.\n\nAggredior turpis adicio. Molestias concido cibo concedo centum velit vergo nam thymum ambitus. Censura bos vix vindico.",
"price": 3674600,
"currency": "USD",
"bedrooms": 0,
"bathrooms": 2,
"squareFeet": 9197,
"address": "6912 Gregory Junctions",
"city": "Henderson",
"region": "Mississippi",
"countryAlpha2": "SE",
"latitude": -9.503652,
"longitude": 129.741793,
"status": "active",
"listedAt": "2026-02-09T00:15:03.783Z",
"createdAt": "2026-02-08T18:57:49.041Z",
"updatedAt": "2026-02-12T00:08:12.436Z"
}