House in Seanhaven
house · Seanhaven · $4,480,800
4341 Russell Street
Overview
listings / #101
house · Seanhaven · $4,480,800
4341 Russell Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/listings/101" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/listings/101" ); 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/101"
);
const listing = (await res.json()) as Listing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/listings/101"
)
listing = res.json() Response
{
"id": 101,
"agentUserId": 187,
"propertyType": "house",
"title": "House in Seanhaven",
"description": "Aqua totam desipio creta terra thymum patruus tenus. Quae bellum beatus deinde aegrus cometes conservo ancilla apto abduco. Umbra subseco adflicto suus.\n\nNemo barba vae. Adduco sustineo amet. Arma conicio sopor.\n\nDepulso eaque denuncio autus pax talus combibo comminor supplanto excepturi. Tenus denique titulus solvo demulceo sumo toties. Calamitas varius quibusdam voluptatibus ratione.\n\nDepraedor dapifer necessitatibus curia. Sub cresco voveo solus. Strues tam valetudo tutamen tribuo deinde coadunatio doloribus audax.",
"price": 4480800,
"currency": "USD",
"bedrooms": 1,
"bathrooms": 4.5,
"squareFeet": 10423,
"address": "4341 Russell Street",
"city": "Seanhaven",
"region": "Michigan",
"countryAlpha2": "TH",
"latitude": -34.820516,
"longitude": -90.041444,
"status": "active",
"listedAt": "2026-03-14T02:21:05.798Z",
"createdAt": "2026-03-13T13:50:04.267Z",
"updatedAt": "2026-05-14T09:55:56.449Z"
}