Redfin Agent Details API (Async)
Scrape Redfin Agent details into structured JSON/CSV using ScraperAPI async in NodeJS. Use URL, country code, and TLD parameters for precise data extraction.
This endpoint retrieves information and details from a Redfin Agent's page or a Redfin Partner Agents page and transforms it into usable JSON.
Single Query Request:
import fetch from 'node-fetch';
const options = {
method: 'POST',
body: JSON.stringify({
apiKey: 'API_KEY',
url: 'URL',
country_code: 'COUNTRY_CODE',
tld: 'TLD',
callback: {
type: 'webhook',
url: 'YYYYY' }}),
headers: {
'Content-Type': 'application/json',
},
}
fetch('https://async.scraperapi.com/structured/redfin/agent', options)
.then(response => {
response.text().then(text => console.log(text));
})
.catch(error => {
console.log(error)
})Multiple Query Request:
Parameters
Details
API_KEY (required)
User's 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
Sample Response
For single query requests:
For multiple query requests:
Last updated
Was this helpful?

