example-data.com

listings / #79

Townhouse in Port Libbie

townhouse · Port Libbie · $4,467,900

79687 Zulauf Road

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/listings/79" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/listings/79"
);
const listing = await res.json();
import type { Listing } from "https://example-data.com/types/listings.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/listings/79"
);
const listing = (await res.json()) as Listing;
import requests

res = requests.get(
    "https://example-data.com/api/v1/listings/79"
)
listing = res.json()
{
  "id": 79,
  "agentUserId": 143,
  "propertyType": "townhouse",
  "title": "Townhouse in Port Libbie",
  "description": "Alveus bellicus solitudo decimus brevis. Harum abscido condico. Tolero uxor neque tonsor volaticus.\n\nAdministratio umbra crudelis tunc. Solum attonbitus valens doloribus est adicio angelus argumentum. Vere cornu tot.",
  "price": 4467900,
  "currency": "USD",
  "bedrooms": 6,
  "bathrooms": 4,
  "squareFeet": 5751,
  "address": "79687 Zulauf Road",
  "city": "Port Libbie",
  "region": "Minnesota",
  "countryAlpha2": "DK",
  "latitude": -2.648335,
  "longitude": -151.948434,
  "status": "pending",
  "listedAt": "2024-07-10T13:19:37.570Z",
  "createdAt": "2024-07-09T22:29:19.396Z",
  "updatedAt": "2025-10-20T17:19:44.935Z"
}
Draftbit