example-data.com
Menu
Browse docs and collections

Overview

listings / #158

Townhouse in Fond du Lac

townhouse · Fond du Lac · $3,571,000

185 Veterans Memorial Drive

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 158,
  "agentUserId": 24,
  "propertyType": "townhouse",
  "title": "Townhouse in Fond du Lac",
  "description": "Voluptas minus apto caecus. Vicissitudo currus accommodo deduco spiritus benigne assumenda vulnus corrigo. Sperno curatio super stella via ager supellex soluta.\n\nClaudeo talus valetudo tepidus vestrum voluptatem et. Tremo cubicularis uter modi. Concedo concedo suffoco comburo audax temptatio.",
  "price": 3571000,
  "currency": "USD",
  "bedrooms": 1,
  "bathrooms": 1,
  "squareFeet": 1962,
  "address": "185 Veterans Memorial Drive",
  "city": "Fond du Lac",
  "region": "Washington",
  "countryAlpha2": "TR",
  "latitude": 34.863109,
  "longitude": 86.725568,
  "status": "pending",
  "listedAt": "2026-04-18T17:32:32.629Z",
  "createdAt": "2026-04-18T11:47:17.478Z",
  "updatedAt": "2026-05-18T15:45:27.837Z"
}