House in Lake Sanfordfurt
house · Lake Sanfordfurt · $1,774,300
142 Narciso Ranch
Overview
listings / #13
house · Lake Sanfordfurt · $1,774,300
142 Narciso Ranch
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/13" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/13" ); 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/13"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/13"
)
listing = res.json() Response
{
"id": 13,
"agentUserId": 242,
"propertyType": "house",
"title": "House in Lake Sanfordfurt",
"description": "Sit velociter tamisium atqui depulso arx cinis. Eligendi acies sui conscendo tollo absorbeo. Vulpes comptus utilis.\n\nDelectus caveo degusto voco cohors vos. Amor tamisium dolorem vesica animus deinde. Vesica concido sol victoria vilis dapifer minima commodi debilito.",
"price": 1774300,
"currency": "USD",
"bedrooms": 4,
"bathrooms": 0.5,
"squareFeet": 6553,
"address": "142 Narciso Ranch",
"city": "Lake Sanfordfurt",
"region": "Indiana",
"countryAlpha2": "GB",
"latitude": -18.35005,
"longitude": -59.730629,
"status": "sold",
"listedAt": "2024-08-14T22:44:49.994Z",
"createdAt": "2024-08-14T03:12:03.166Z",
"updatedAt": "2025-11-17T03:05:29.827Z"
}