Townhouse in Kuhlmanboro
townhouse · Kuhlmanboro · $3,335,800
6544 Justine Cliff
Overview
listings / #89
townhouse · Kuhlmanboro · $3,335,800
6544 Justine Cliff
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/89" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/89" ); 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/89"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/89"
)
listing = res.json() Response
{
"id": 89,
"agentUserId": 62,
"propertyType": "townhouse",
"title": "Townhouse in Kuhlmanboro",
"description": "Validus aptus aeternus testimonium talis adnuo confero desino aestus. Velociter deorsum villa causa creptio vir amet debeo. Appositus cumque distinctio aduro vespillo volva audeo cresco thesis ab.\n\nIure vir congregatio tergo angulus. Utilis pecco adopto terebro umbra. Aeternus corrigo supellex uberrime capto astrum ventosus pariatur defero agnitio.\n\nTabgo acquiro ubi ait creptio pauper victus. Adsuesco eos conscendo desipio pauper saepe aiunt. Molestias viriliter derideo aro ustilo arto molestias aspicio.\n\nCasus vorago virtus alii voco defungo. Ustulo sulum ambitus. Nisi casus spoliatio anser.",
"price": 3335800,
"currency": "USD",
"bedrooms": 4,
"bathrooms": 4,
"squareFeet": 2548,
"address": "6544 Justine Cliff",
"city": "Kuhlmanboro",
"region": "Idaho",
"countryAlpha2": "GB",
"latitude": 19.425371,
"longitude": -152.424728,
"status": "active",
"listedAt": "2024-12-10T11:59:56.130Z",
"createdAt": "2024-12-09T19:40:36.668Z",
"updatedAt": "2025-12-24T17:08:14.207Z"
}