Redfin Agent or Brokerage details in structured JSON

Possible use cases:

  • Create lead generation lists of agents and/or brokerages

  • Performance & Market tracking for specific regions

  • Competitor insights by tracking brogerage market share, specialization or agent movements

  • Market research by finding agents that mostly fit specific needs

How it works:

curl 'https://api.scraperapi.com/structured/redfin/agent?
api_key=api_key&url=https://www.redfin.com/real-estate-agents/name'

Input:

As input you need to add the URL to the Redfin agent or the brokerage you want to scrape.

Output:

  • Contact details like name, license number, contact and language info

  • Sales statistics like number of total sales and sales volume.

  • Current listings including address, listing properties and image URL

  • Reviews including general rating , review details and transactional history.

  • Database of agents and brokerages

👉 Learn more in our documentation

👉 Use the Async Method for faster and more successful requests

👉 Test run your request in the API Playground

👉 Use the low-code version with DataPipeline

Example Output:

{
    "url":"https://www.redfin.com/real-estate-agents/david-tom",
    "type":"redfin-agent",
    "name":"David Tom",
    "license_number":"10301220329",
    "brokerage":"",
    "contact":"(347) 618-3591",
    "languages":"English, Chinese",
    "about":"I’ve been a real estate agent in my hometown of New York since 1999. Studying real estate, it turns out, wasn't just about the property. It was about culture, history, geography and art. I’ve always been fascinated by stories about owning and renting homes in the city. My story began with luxury condos overlooking Central Park that inspired me to become an agent building my business to $20 million in sales over 3 years and closing over 50 deals. I pride myself on listening to client needs and known for being accessible to clients is what motivates me to find their dream home. Clients choose to work with me because of my knowledge, the expertise and experience to successfully close the deal. I love that working at Redfin gives me the opportunity to focus on each client and save them money.",
    "neighborhoods":[],
    "agent_areas":[
        "Manhattan",
        "Brooklyn",
        "Queens"
        ],
    "sales":[
    {
        "sales_header":"Total Deals",
        "value":"29",
        "numeric_value":29
        },
    {
        "sales_header":"Sales volume",
        "value":"$27M",
        "numeric_value":27000000
    },
    {
        "sales_header":"Highest sales price",
        "value":"$4.8M",
        "numeric_value":4800000
    }
    ],
    "agent_listings"[
    {
        "image":"https://ssl.cdn-redfin.com/photo/269/ismphoto/176/genIsm.844176_3.jpg",
        "listing_price":"$2,350,000",
        "numeric_listing_price":2350000,
        "beds":"5 beds",
        "baths":"3.5 baths",
        "sqft":"2,262 sq ft",
        "address":"71-38 Harrow St, Forest Hills, NY 11375"
    },
    {
        "image":"https://ssl.cdn-redfin.com/photo/269/ismphoto/586/genIsm.L3563586_2.jpg",
        "listing_price":"$849,000",
        "numeric_listing_price":849000,
        "beds":"3 beds","baths":"2 baths",
        "sqft":"1,500 sq ft",
        "address":"110-45 Queens Blvd #506, Forest Hills, NY 11375"
    }
    ],
    "review_ratings":
    {
        "rating":"4.8",
        "review_counts":"14 reviews"
    },
        "reviews"[
    {
        "image":"https://ssl.cdn-redfin.com/photo/269/midphoto/708/genMid.809708_2.jpg",
        "rating":"4.0",
        "review":"David is very knowledgeable, always responsive and personable. I felt supported throughout my home purchase.",
        "purchase_type":"Condo buyer",
        "close_date":"closed  Apr '25",
        "property_info":
        {
            "address":"67-35 Yellowstone Blvd Unit 6u, Forest Hills, NY","url":"https://www.redfin.com/NY/Forest-Hills/6735-Yellowstone-Blvd-11375/unit-6U/home/20658880",
            "cost":"$280K",
            "numeric_cost":280000
            }
        }
    ]
}

Last updated

Was this helpful?