House in Euclid
house · Euclid · $4,655,600
268 Castle Lane
listings / #106
house · Euclid · $4,655,600
268 Castle Lane
curl -sS \
"https://example-data.com/api/v1/listings/106" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/listings/106"
);
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/106"
);
const listing = (await res.json()) as Listing;import requests
res = requests.get(
"https://example-data.com/api/v1/listings/106"
)
listing = res.json() {
"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"
}