Redfin Details Scraper avatar

Redfin Details Scraper

Pricing

from $9.00 / 1,000 results

Go to Apify Store
Redfin Details Scraper

Redfin Details Scraper

Redfin real estate scraper that pulls property listings, prices, photos, and agent info from any Redfin city or zipcode page, so you can build market analyses without manual data entry.

Pricing

from $9.00 / 1,000 results

Rating

0.0

(0)

Developer

Kawsar

Kawsar

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

3 days ago

Last modified

Share

Pull property data from Redfin without copying fields by hand. Give it a city page, zipcode page, or a direct listing URL and it returns a structured dataset with prices, beds, baths, square footage, listing photos, GPS coordinates, agent info, and more.


What it collects

For each property, the actor returns:

FieldDescription
propertyUrlFull Redfin listing URL
streetAddressStreet address
city, state, zipCodeLocation
priceListing price (USD)
listingStatusFor Sale, Sold, or Pending
bedsBedrooms
bathsBathrooms
sqftInterior square footage
propertyCategoryProperty type (Single Family, Condo, etc.)
yearBuiltYear the property was built
latitude, longitudeGPS coordinates
listingRemarksFull agent description
amenityFeaturesList of features (parking, laundry, A/C, etc.)
imageUrlsAll listing photo URLs
mainImageUrlPrimary photo URL
mlsNumberMLS listing ID
daysOnMarketDays active on market
lotSizeLot size
hoaFeeHOA fee (if applicable)
parkingInfoGarage and parking details
agentNameListing agent name
brokerageNameListing brokerage
schoolInfoSchool district or nearby schools
scrapedAtTimestamp of data collection

Input

Fields

FieldRequiredDescription
startUrlsYesOne or more Redfin URLs (city, zipcode, or property)
maxItemsNoMax properties to collect (default: 100, max: 1000)
requestTimeoutSecsNoPer-request timeout in seconds (default: 30)

Accepted URL formats

The actor accepts any of these Redfin URL types:

# City page
https://www.redfin.com/city/11387/OH/London
# Zipcode page
https://www.redfin.com/zipcode/32754
# Direct property page
https://www.redfin.com/OH/London/74-E-First-St-43140/home/40386455

For city and zipcode pages, the actor crawls the listing and collects all visible property detail pages, up to maxItems.

Example input

{
"startUrls": [
{"url": "https://www.redfin.com/city/11387/OH/London"},
{"url": "https://www.redfin.com/zipcode/32754"}
],
"maxItems": 50
}

Output

Example record

{
"propertyUrl": "https://www.redfin.com/OH/London/74-E-First-St-43140/home/40386455",
"streetAddress": "74 E First St",
"city": "London",
"state": "OH",
"zipCode": "43140",
"country": "US",
"price": 149900,
"priceCurrency": "USD",
"listingStatus": "For Sale",
"beds": 3,
"baths": 2,
"sqft": 1350,
"propertyCategory": "Single Family Residential",
"yearBuilt": 1965,
"latitude": 39.8870,
"longitude": -83.4484,
"listingRemarks": "Charming single-family home on a quiet street...",
"amenityFeatures": [
"Heating & cooling: Has A/C",
"Parking: 2-car garage"
],
"imageUrls": [
"https://ssl.cdn-redfin.com/photo/52/bigphoto/455/40386455_1.jpg",
"https://ssl.cdn-redfin.com/photo/52/bigphoto/455/40386455_2.jpg"
],
"mainImageUrl": "https://ssl.cdn-redfin.com/photo/52/bigphoto/455/40386455_1.jpg",
"mlsNumber": "224012345",
"daysOnMarket": 14,
"lotSize": "0.18 acres",
"hoaFee": null,
"parkingInfo": "Parking: 2-car garage",
"agentName": "Jane Smith",
"brokerageName": "RE/MAX Associates",
"schoolInfo": "London City School District",
"inputUrl": "https://www.redfin.com/city/11387/OH/London",
"scrapedAt": "2026-04-06T10:23:45.123456+00:00",
"error": null
}

Use cases

  • Real estate investors building comps and deal analysis
  • Agents who want current market data for a city or zip
  • Analysts tracking price trends across neighborhoods
  • Developers feeding listing data into apps and dashboards
  • Researchers studying housing market patterns

Tips

  • City and zipcode URLs return multiple properties per run. Direct property URLs scrape one listing at a time.
  • Lower maxItems to 10 or 20 when testing a new URL.
  • Data reflects what is publicly visible on the Redfin page at the time of scraping.