Redfin Agent Details API (Async)

This Redfin Agent Details API retrieves information and details from a Redfin Agent's page or a Redfin Partner Agents page and transforms it into usable JSON.

Single URL Request

curl -X POST \
	-H "Content-Type: application/json" \
	-d '{
			"apiKey": "API_KEY",
			"url": "URL",
			"country_code": "COUNTRY_CODE",
			"tld": "TLD",
			"callback": {
				"type": "webhook",
				"url": "YYYYY"
			}
		}' \
"https://async.scraperapi.com/structured/redfin/agent"

Multiple URLs Request

curl -X POST \
	-H "Content-Type: application/json" \
	-d '{
			"apiKey": "API_KEY",
			"urls": ["URL1", "URL2],
			"country_code": "COUNTRY_CODE",
			"tld": "TLD",
			"callback": {
				"type": "webhook",
				"url": "YYYYY"
			}
		}' \
"https://async.scraperapi.com/structured/redfin/agent"

Supported Parameters

Parameters
Details

API_KEY (required)

Your API Key.

URL (required)

The URL has to be a Redfin Agent URL or a Redfin Partner Agent URL.

country_code

Allows you to geotarget the request. Use this parameter if you want Redfin to be scraped from a specific country.

TLD

The top level domain to scrape.

Valid options:

com’ (for redfin.comarrow-up-right)

ca’ (for redfin.caarrow-up-right)

Sample Response

Single URL Request

Multiple URLs Request

After the job(s) finish, you will find the result under the response key in the response JSON object. The structure is the same as in the corresponding SYNC data endpoint.

Last updated