example-data.com

listings / #12

House in La Mirada

house · La Mirada · $2,613,700

68394 St Mary's Close

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/listings/12" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/listings/12"
);
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/12"
);
const listing = (await res.json()) as Listing;
import requests

res = requests.get(
    "https://example-data.com/api/v1/listings/12"
)
listing = res.json()
{
  "id": 12,
  "agentUserId": 242,
  "propertyType": "house",
  "title": "House in La Mirada",
  "description": "Censura cultellus soleo auctus advoco aut. Neque saepe tamquam versus tondeo tantillus autem. Thorax cedo defleo.\n\nTersus bos sodalitas cubo. Ara clarus defluo veritatis sono curis perferendis adficio. Ratione vomito surgo defluo antiquus careo patrocinor.",
  "price": 2613700,
  "currency": "USD",
  "bedrooms": 5,
  "bathrooms": 1,
  "squareFeet": 10271,
  "address": "68394 St Mary's Close",
  "city": "La Mirada",
  "region": "Kentucky",
  "countryAlpha2": "ID",
  "latitude": 2.390547,
  "longitude": -84.135985,
  "status": "active",
  "listedAt": "2024-10-12T13:58:24.057Z",
  "createdAt": "2024-10-11T19:14:46.114Z",
  "updatedAt": "2025-06-14T17:38:30.599Z"
}
Draftbit