This endpoint retrieves information and details from a Redfin Agent's page or a Redfin Partner Agents page and transforms it into usable JSON.
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)
})
import fetch from 'node-fetch';
const options = {
method: 'POST',
body: JSON.stringify({
apiKey: 'API_KEY',
urls: ['URL1','URL2'],
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)
})
{
"id": "d5242953-7d1f-4cba-abf7-4d74a9afe9a3",
"attempts": 0,
"status": "running",
"statusUrl": "https://async.scraperapi.com/jobs/d5242953-7d1f-4cba-abf7-4d74a9afe9a3",
"url": "https://www.redfin.com/real-estate-agents/david-tom"
}
[
{
"id": "d5242953-7d1f-4cba-abf7-4d74a9afe9a3",
"attempts": 0,
"status": "running",
"statusUrl": "https://async.scraperapi.com/jobs/d5242953-7d1f-4cba-abf7-4d74a9afe9a3",
"url": "https://www.redfin.com/real-estate-agents/david-tom"
},
{
"id": "4f23b759-2939-47c1-9821-4e3218bc9d37",
"attempts": 0,
"status": "running",
"statusUrl": "https://async.scraperapi.com/jobs/4f23b759-2939-47c1-9821-4e3218bc9d37",
"url": "https://www.redfin.com/real-estate-agents/keri-donoho"
}
]