example-data.com
Menu
Browse docs and collections

Overview

listings / #153

House in Lake Stanton

house · Lake Stanton · $3,442,800

860 Hoeger Row

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/listings/153" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/listings/153"
);
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/153"
);
const listing = (await res.json()) as Listing;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/listings/153"
)
listing = res.json()

Response

{
  "id": 153,
  "agentUserId": 200,
  "propertyType": "house",
  "title": "House in Lake Stanton",
  "description": "Defero vae contego usus umquam aranea vinco. Auxilium cohors templum brevis verbera deprecator canto. Attollo ascisco inflammatio capillus compello tripudio.\n\nRepellat defessus rerum vilicus testimonium vester. Despecto umbra umbra congregatio aro ultra coaegresco. Sum auctus adfero voluptatum approbo talus.\n\nClementia ars impedit bardus adhaero baiulus defungo sufficio. Solus iure occaecati stabilis crur depraedor sed tracto nisi tametsi. Audeo depraedor tunc cribro caput deporto venio defero crudelis.",
  "price": 3442800,
  "currency": "USD",
  "bedrooms": 2,
  "bathrooms": 0.5,
  "squareFeet": 6587,
  "address": "860 Hoeger Row",
  "city": "Lake Stanton",
  "region": "Arkansas",
  "countryAlpha2": "PH",
  "latitude": -48.76907,
  "longitude": 117.914182,
  "status": "active",
  "listedAt": "2024-06-14T11:53:19.624Z",
  "createdAt": "2024-06-13T19:38:25.296Z",
  "updatedAt": "2025-07-30T09:16:22.253Z"
}