Skip to main content
POST
/
api
/
redfin
/
properties
/
search
/redfin/properties/search
curl --request POST \
  --url https://api.anysite.io/api/redfin/properties/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "region_id": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@redfin_home_card",
    "listing_id": "<string>",
    "url": "<string>",
    "mls_id": "<string>",
    "mls_status": "<string>",
    "price": 123,
    "hoa": 123,
    "beds": 123,
    "baths": 123,
    "sqft": 123,
    "price_per_sqft": 123,
    "lot_size": 123,
    "year_built": 123,
    "property_type": "<string>",
    "stories": 123,
    "street_line": "<string>",
    "unit_number": "<string>",
    "location": "<string>",
    "city": "<string>",
    "state": "<string>",
    "zip": "<string>",
    "country_code": "<string>",
    "latitude": 123,
    "longitude": 123,
    "days_on_market": 123,
    "photo_count": 123,
    "listing_agent": "<string>",
    "listing_broker": "<string>",
    "is_redfin": true,
    "is_new_construction": true,
    "has_3d_tour": true,
    "description": "<string>",
    "key_facts": [],
    "listing_tags": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
region_id
string
required

Numeric Redfin region id, taken from the region page URL (e.g. /city/30749/NY/New-York -> 30749, /neighborhood/3040/... -> 3040)

Minimum string length: 1
Examples:

"30749"

"16163"

region_type
enum<integer>
required

Region type: city, neighborhood, zip, county, or school district

Available options:
1,
2,
4,
6,
7
count
integer
required

Max number of homes to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@redfin_home_card
listing_id
string | null
url
string | null
mls_id
string | null
mls_status
string | null
price
number | null
hoa
number | null
beds
number | null
baths
number | null
sqft
integer | null
price_per_sqft
number | null
lot_size
integer | null
year_built
integer | null
property_type
string | null
stories
number | null
street_line
string | null
unit_number
string | null
location
string | null
city
string | null
state
string | null
zip
string | null
country_code
string | null
latitude
number | null
longitude
number | null
days_on_market
integer | null
photo_count
integer | null
listing_agent
string | null
listing_broker
string | null
is_redfin
boolean | null
is_new_construction
boolean | null
has_3d_tour
boolean | null
description
string | null
key_facts
string[]
listing_tags
string[]