House in La Mirada
house · La Mirada · $2,613,700
68394 St Mary's Close
Overview
listings / #12
house · La Mirada · $2,613,700
68394 St Mary's Close
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/12" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/12" ); 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/12"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/12"
)
listing = res.json() Response
{
"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"
}