House in Euclid
house · Euclid · $4,655,600
268 Castle Lane
Overview
listings / #106
house · Euclid · $4,655,600
268 Castle Lane
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/106" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/106" ); 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/106"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/106"
)
listing = res.json() Response
{
"id": 106,
"agentUserId": 98,
"propertyType": "house",
"title": "House in Euclid",
"description": "Carbo animus synagoga urbanus quod abundans vulpes corrupti. Perspiciatis tero celo subnecto nihil nostrum cunctatio. Deludo umbra derelinquo venio.\n\nMollitia torqueo abutor. Iure ustulo condico appello delego. Cura enim animadverto ulciscor.\n\nAmita facere sapiente corona aetas adeo claro. Arca amet cuius crepusculum ulterius tertius ver calculus deporto. Torrens benevolentia inventore appello approbo aranea sonitus tactus.",
"price": 4655600,
"currency": "USD",
"bedrooms": 1,
"bathrooms": 3,
"squareFeet": 8452,
"address": "268 Castle Lane",
"city": "Euclid",
"region": "Washington",
"countryAlpha2": "AR",
"latitude": 34.855212,
"longitude": -124.713587,
"status": "sold",
"listedAt": "2025-03-14T18:44:34.858Z",
"createdAt": "2025-03-14T02:46:43.717Z",
"updatedAt": "2026-02-13T16:01:10.189Z"
}