Skip to main content
POST
/
api
/
redfin
/
properties
/redfin/properties
curl --request POST \
  --url https://api.anysite.io/api/redfin/properties \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "property": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@redfin_property",
    "listing_id": "<string>",
    "url": "<string>",
    "mls_id": "<string>",
    "status": "<string>",
    "status_description": "<string>",
    "price": 123,
    "price_per_sqft": 123,
    "predicted_value": 123,
    "last_sold_price": 123,
    "last_sold_date": 123,
    "beds": 123,
    "baths": 123,
    "full_baths": 123,
    "partial_baths": 123,
    "sqft": 123,
    "lot_size": 123,
    "year_built": 123,
    "stories": 123,
    "property_type": "<string>",
    "days_on_market": 123,
    "days_on_market_label": "<string>",
    "hoa_fee": 123,
    "street_address": "<string>",
    "unit_number": "<string>",
    "city": "<string>",
    "state": "<string>",
    "zip": "<string>",
    "country_code": "<string>",
    "full_address": "<string>",
    "county": "<string>",
    "apn": "<string>",
    "latitude": 123,
    "longitude": 123,
    "description": "<string>",
    "image": "<string>",
    "images": [],
    "listing_agents": [],
    "data_source": "<string>",
    "amenity_groups": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
property
string
required

Redfin property URL or path (containing /home/{id})

Minimum string length: 1
Examples:

"https://www.redfin.com/NY/Brooklyn/7017-20th-Ave-11204/home/171337321"

"/NY/Brooklyn/7017-20th-Ave-11204/home/171337321"

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_property
listing_id
string | null
url
string | null
mls_id
string | null
status
string | null
status_description
string | null
price
number | null
price_per_sqft
number | null
predicted_value
number | null
last_sold_price
number | null
last_sold_date
integer | null
beds
number | null
baths
number | null
full_baths
integer | null
partial_baths
integer | null
sqft
integer | null
lot_size
integer | null
year_built
integer | null
stories
number | null
property_type
string | null
days_on_market
integer | null
days_on_market_label
string | null
hoa_fee
number | null
street_address
string | null
unit_number
string | null
city
string | null
state
string | null
zip
string | null
country_code
string | null
full_address
string | null
county
string | null
apn
string | null
latitude
number | null
longitude
number | null
description
string | null
image
string | null
images
string[]
listing_agents
RedfinAgent · object[]
data_source
string | null
amenity_groups
RedfinAmenityGroup · object[]