Skip to main content
POST
/
api
/
redfin
/
properties
/
history
/redfin/properties/history
curl --request POST \
  --url https://api.anysite.io/api/redfin/properties/history \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "property": "<string>",
  "timeout": 300
}
'
[
  {
    "@type": "@redfin_property_history_event",
    "event_description": "<string>",
    "mls_description": "<string>",
    "price": 123,
    "event_date": 123,
    "source": "<string>",
    "source_id": "<string>",
    "data_source": "<string>"
  }
]

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
Example:

"https://www.redfin.com/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

@type
string
default:@redfin_property_history_event
event_description
string | null
mls_description
string | null
price
number | null
event_date
integer | null
source
string | null
source_id
string | null
data_source
string | null