# Redfin Scraper - US Home Listings Data (`logiover/redfin-scraper`) Actor

Scrape US homes from Redfin: price, beds, baths, sqft, lot size, lat/lng, MLS#, days on market, year built, HOA, photos & broker. For sale / sold / rent. Thousands per region. No login.

- **URL**: https://apify.com/logiover/redfin-scraper.md
- **Developed by:** [Logiover](https://apify.com/logiover) (community)
- **Categories:** Business, E-commerce, Marketing
- **Stats:** 3 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Redfin Scraper — US Home Listings Data

Extract home listings from Redfin without a login or API key. This Redfin scraper turns any region URL or US ZIP code into a clean, structured real-estate dataset — complete with MLS numbers, days on market and price-per-sqft fields — that you can export to CSV, JSON or Excel.

Paste a Redfin city, ZIP or neighborhood URL, choose **for sale**, **recently sold** or **for rent**, and the actor pulls thousands of homes per region with full property detail and exact coordinates.

### What you get

Each home is saved as a structured record. Fields include:

- **price** — list price in USD, plus **pricePerSqFt**
- **address**, **city**, **state**, **zip** — full location
- **latitude** / **longitude** — exact GPS coordinates
- **beds**, **baths** — with **fullBaths** and **partialBaths** broken out
- **sqFt** — interior living area
- **lotSize** — lot size
- **propertyType** — single-family, condo, townhouse, multi-family, land
- **yearBuilt** — construction year
- **hoaFee** — monthly HOA dues
- **daysOnMarket** — days on Redfin
- **mlsId**, **mlsStatus** — MLS number and status
- **status** — for sale, sold, pending, contingent
- **latitude**, **longitude** — GPS coordinates
- **pricePerSqFt**, **stories**, **fullBaths**, **partialBaths** — extra detail fields
- **numPhotos** — number of listing photos (view the gallery via the listing URL)
- **url** — direct link to the Redfin listing

Download as **JSON, CSV, Excel or via the Apify API**, or push to your own storage.

### Use cases

- **Comps & valuation** — pull sold homes by ZIP to build CMAs and price models with real MLS data.
- **Market analysis** — track inventory, price-per-sqft, days on market and HOA fees across regions.
- **Investor deal flow** — filter by price and beds to surface rentals and value-add opportunities.
- **Mapping & dashboards** — feed lat/lng plus property attributes into a GIS map or BI dashboard.

### How to use

1. Click **Try for free** / **Start**.
2. Open redfin.com, search a location, and copy the URL into **Redfin search URLs** — a city (`.../city/30818/TX/Austin`), ZIP (`.../zipcode/90210`) or neighborhood. Plain 5-digit ZIP codes like `78704` also work.
3. Choose a **Listing type**: for sale, recently sold or for rent.
4. (Optional) Set **min/max price**, **min beds** and a **sort order**.
5. Set **Max results** to cap output (0 = unlimited), then run.

Results stream into the dataset as the actor paginates (up to 350 homes per page). Export in any format or automate it on a schedule via the Apify API.

> **Tip:** Redfin requires US residential proxies. Keep the default proxy (Apify Proxy · RESIDENTIAL · US).

### FAQ

#### Do I need a Redfin account or API key?
No. The actor reads only public Redfin listing data through US residential proxies — no login, no cookies and no API key.

#### Can I scrape sold homes with MLS data?
Yes. Set **Listing type** to **Recently sold** to pull sold homes with `mlsId`, `mlsStatus`, price and `daysOnMarket` — ideal for comps and CMAs.

#### How many homes can it return per region?
Each Redfin page returns up to 350 homes, and the actor paginates automatically. Use **Max results** to cap output or set it to 0 for unlimited.

#### Is scraping Redfin legal?
This actor collects only publicly available listing data. You are responsible for complying with Redfin's terms and applicable laws (such as GDPR/CCPA where personal data is involved). Use it responsibly.

# Actor input Schema

## `searchUrls` (type: `array`):

Paste Redfin region URLs (city, zip, neighborhood or county). Open redfin.com, search a location, copy the URL. 5-digit US zip codes also work directly. Examples: 'https://www.redfin.com/city/30818/TX/Austin', 'https://www.redfin.com/zipcode/90210', '78704'.
## `locations` (type: `array`):

Alternative to searchUrls. Accepts 5-digit US zip codes or Redfin region URLs.
## `listingType` (type: `string`):

Which listings to collect.
## `sortBy` (type: `string`):

Sort order for results.
## `minPrice` (type: `integer`):

Only keep homes priced at or above this value (USD).
## `maxPrice` (type: `integer`):

Only keep homes priced at or below this value (USD).
## `minBeds` (type: `integer`):

Only keep homes with at least this many bedrooms.
## `maxResults` (type: `integer`):

Global cap on homes saved across all locations. Each page returns up to 350 homes. 0 = unlimited.
## `proxyConfiguration` (type: `object`):

Redfin requires US residential proxies. Leave the default (Apify Proxy · RESIDENTIAL · US).

## Actor input object example

```json
{
  "searchUrls": [
    "https://www.redfin.com/city/30818/TX/Austin",
    "90210"
  ],
  "locations": [
    "33139",
    "https://www.redfin.com/zipcode/60601"
  ],
  "listingType": "forSale",
  "sortBy": "recommended",
  "maxResults": 25,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
````

# Actor output Schema

## `address` (type: `string`):

Street address

## `city` (type: `string`):

City

## `state` (type: `string`):

State

## `price` (type: `string`):

List/sold price

## `beds` (type: `string`):

Bedrooms

## `baths` (type: `string`):

Bathrooms

## `sqFt` (type: `string`):

Living area

## `url` (type: `string`):

Redfin URL

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchUrls": [
        "https://www.redfin.com/city/30818/TX/Austin"
    ],
    "maxResults": 25,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "US"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("logiover/redfin-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "searchUrls": ["https://www.redfin.com/city/30818/TX/Austin"],
    "maxResults": 25,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "US",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("logiover/redfin-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchUrls": [
    "https://www.redfin.com/city/30818/TX/Austin"
  ],
  "maxResults": 25,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}' |
apify call logiover/redfin-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=logiover/redfin-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Redfin Scraper - US Home Listings Data",
        "description": "Scrape US homes from Redfin: price, beds, baths, sqft, lot size, lat/lng, MLS#, days on market, year built, HOA, photos & broker. For sale / sold / rent. Thousands per region. No login.",
        "version": "1.0",
        "x-build-id": "hGRE6cPJ7K6NXfokB"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/logiover~redfin-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-logiover-redfin-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/logiover~redfin-scraper/runs": {
            "post": {
                "operationId": "runs-sync-logiover-redfin-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/logiover~redfin-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-logiover-redfin-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "searchUrls"
                ],
                "properties": {
                    "searchUrls": {
                        "title": "Redfin search URLs",
                        "type": "array",
                        "description": "Paste Redfin region URLs (city, zip, neighborhood or county). Open redfin.com, search a location, copy the URL. 5-digit US zip codes also work directly. Examples: 'https://www.redfin.com/city/30818/TX/Austin', 'https://www.redfin.com/zipcode/90210', '78704'.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "locations": {
                        "title": "Locations (zips / URLs)",
                        "type": "array",
                        "description": "Alternative to searchUrls. Accepts 5-digit US zip codes or Redfin region URLs.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "listingType": {
                        "title": "Listing type",
                        "enum": [
                            "forSale",
                            "sold",
                            "rent"
                        ],
                        "type": "string",
                        "description": "Which listings to collect.",
                        "default": "forSale"
                    },
                    "sortBy": {
                        "title": "Sort by",
                        "enum": [
                            "recommended",
                            "newest",
                            "priceLow",
                            "priceHigh"
                        ],
                        "type": "string",
                        "description": "Sort order for results.",
                        "default": "recommended"
                    },
                    "minPrice": {
                        "title": "Min price",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only keep homes priced at or above this value (USD)."
                    },
                    "maxPrice": {
                        "title": "Max price",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only keep homes priced at or below this value (USD)."
                    },
                    "minBeds": {
                        "title": "Min beds",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only keep homes with at least this many bedrooms."
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Global cap on homes saved across all locations. Each page returns up to 350 homes. 0 = unlimited.",
                        "default": 1000
                    },
                    "proxyConfiguration": {
                        "title": "Proxy",
                        "type": "object",
                        "description": "Redfin requires US residential proxies. Leave the default (Apify Proxy · RESIDENTIAL · US).",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ],
                            "apifyProxyCountry": "US"
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
