House in Geoffreyville
house · Geoffreyville · $192,500
75911 Jerde Park
Overview
listings / #10
house · Geoffreyville · $192,500
75911 Jerde Park
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/10" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/10" ); 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/10"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/10"
)
listing = res.json() Response
{
"id": 10,
"agentUserId": 75,
"propertyType": "house",
"title": "House in Geoffreyville",
"description": "Iste virga vacuus ipsum. Virgo tabernus vetus aufero angelus canis ubi adinventitias paens coadunatio. Summa tero decens usus cultellus perferendis attollo tendo temeritas ascit.\n\nTalus suppellex volo curatio acidus assumenda tabgo amitto conventus. Patria vitium cultura suscipio repudiandae nemo ascit termes. Terra summopere sol patruus et admoneo modi iusto subseco adflicto.",
"price": 192500,
"currency": "USD",
"bedrooms": 2,
"bathrooms": 2,
"squareFeet": 4494,
"address": "75911 Jerde Park",
"city": "Geoffreyville",
"region": "Virginia",
"countryAlpha2": "FR",
"latitude": 4.014058,
"longitude": 53.849876,
"status": "active",
"listedAt": "2026-01-22T04:16:22.170Z",
"createdAt": "2026-01-21T04:49:36.287Z",
"updatedAt": "2026-03-06T19:10:24.148Z"
}