docs / redfin
Redfin
US homes for sale, sold and rentals with history.
base /redfin/v15 endpoints
post
/redfin/v1/search2 creditslistings by location/url; status=for_sale|sold|for_rent. (for_sale=gis JSON, sold=gis-csv sold_within_days, for_rent=rentals API)
| Parameter | Required |
|---|---|
| location | required |
| url | optional |
| status | optional |
| max_results | optional |
| sold_within_days | optional |
| min_price | optional |
| max_price | optional |
| min_beds | optional |
| max_beds | optional |
| min_baths | optional |
| property_types | optional |
post
/redfin/v1/listing_detail3 creditsfull property: price/tax history (17yr), schools, amenities, agent, photos, description, Redfin Estimate, mortgage, parcel. property_id or /home/ url.
| Parameter | Required |
|---|---|
| property_id | required |
| listing_id | optional |
| url | optional |
post
/redfin/v1/similar2 creditscomparable/similar listings near a property (comps + price band)
| Parameter | Required |
|---|---|
| property_id | required |
| listing_id | optional |
| url | optional |
post
/redfin/v1/autocomplete1 creditresolve a query to Redfin places / agents / schools / buildings
| Parameter | Required |
|---|---|
| query | required |
post
/redfin/v1/market_stats2 creditsderived market snapshot (median list price / $psf / DOM / inventory)
| Parameter | Required |
|---|---|
| location | required |
| url | optional |
Example request · search
curl -X POST https://api.reefapi.com/redfin/v1/search \
-H "x-api-key: $REEF_KEY" \
-H "content-type: application/json" \
-d '{"location":"Austin, TX","max_results":30}'Response shape
{
"ok": true,
"data": { /* the result */ },
"meta": {
"latency_ms": 240,
"record_count": 12,
"completeness_pct": 100
},
"error": null
}