House in Strongsville
house · Strongsville · $4,980,800
36293 Harvey Well
Overview
listings / #110
house · Strongsville · $4,980,800
36293 Harvey Well
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/110" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/110" ); 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/110"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/110"
)
listing = res.json() Response
{
"id": 110,
"agentUserId": 26,
"propertyType": "house",
"title": "House in Strongsville",
"description": "Theca summopere subnecto cerno amita curvo tumultus. Depereo coerceo quas arcus ubi utilis apostolus taedium deludo. Administratio cena bellicus vomito.\n\nUt crinis beneficium tum. Cribro demulceo utilis adsuesco. Vomer cometes brevis.\n\nColor amplitudo depopulo cupressus valeo curia volutabrum. Terga contego maiores. Accusamus placeat vomica statim copiose ullus inventore trado.\n\nCuro cunae vis utilis. Undique confero deprimo carus. Facere timor astrum quia.",
"price": 4980800,
"currency": "USD",
"bedrooms": 4,
"bathrooms": 3.5,
"squareFeet": 2393,
"address": "36293 Harvey Well",
"city": "Strongsville",
"region": "New Jersey",
"countryAlpha2": "PL",
"latitude": -11.186402,
"longitude": 24.076157,
"status": "active",
"listedAt": "2025-08-14T05:44:29.509Z",
"createdAt": "2025-08-13T08:35:02.501Z",
"updatedAt": "2026-01-08T20:41:33.953Z"
}