example-data.com
Menu
Browse docs and collections

Overview

listings / #109

Townhouse in Kunzestad

townhouse · Kunzestad · $2,774,300

41853 Lee Street

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 109,
  "agentUserId": 26,
  "propertyType": "townhouse",
  "title": "Townhouse in Kunzestad",
  "description": "Usitas suasoria brevis. Caries truculenter acquiro rem. Strues decor suscipit.\n\nCurso appello decens admoneo advenio subito timidus. Vapulus adinventitias ducimus allatus candidus accendo taceo totam. Vigilo beatus aggero atrox quod advenio ubi arbitro patior.",
  "price": 2774300,
  "currency": "USD",
  "bedrooms": 5,
  "bathrooms": 3,
  "squareFeet": 8677,
  "address": "41853 Lee Street",
  "city": "Kunzestad",
  "region": "New Mexico",
  "countryAlpha2": "BE",
  "latitude": -37.702186,
  "longitude": 60.406782,
  "status": "active",
  "listedAt": "2025-08-07T20:21:56.393Z",
  "createdAt": "2025-08-07T01:33:28.650Z",
  "updatedAt": "2025-08-28T13:50:09.960Z"
}