docs / us-re
US Real Estate
US homes for sale and rent with details.
base /us-re/v15 endpoints
post
/us-re/v1/listings/search2 creditssearch for-sale listings in a location
| Parameter | Required |
|---|---|
| location | required |
| offset | optional |
| status | optional |
post
/us-re/v1/listings/detail3 creditsfull property: price + tax history, schools, photos
| Parameter | Required |
|---|---|
| property_id | required |
post
/us-re/v1/property/estimates2 creditshome value estimates (Cotality/CoreLogic + Quantarium)
| Parameter | Required |
|---|---|
| property_id | required |
post
/us-re/v1/property/similar2 creditssimilar / related homes (comps)
| Parameter | Required |
|---|---|
| property_id | required |
post
/us-re/v1/market/trends1 creditlocal housing-market medians (price/$psf/DOM/rent) by city or zip
| Parameter | Required |
|---|---|
| location | required |
Example request · listings/search
curl -X POST https://api.reefapi.com/us-re/v1/listings/search \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{"location":"Austin, TX"}'Response shape
{
"ok": true,
"data": { /* the result */ },
"meta": {
"latency_ms": 240,
"record_count": 12,
"completeness_pct": 100
},
"error": null
}