# Redfin Scraper — Listings, Prices & Home Facts (No API Key) (`jamhimself/redfin-listings-scraper`) Actor

Scrape Redfin for-sale home listings as clean JSON: address, price, beds, baths, sqft, and coordinates. Bulk, no API key.

- **URL**: https://apify.com/jamhimself/redfin-listings-scraper.md
- **Developed by:** [Jaime Martinez](https://apify.com/jamhimself) (community)
- **Categories:** Real estate, Agents, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$5.00 / 1,000 property listings

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — 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 — Property Listings, Prices & Home Facts (No API Key)

Scrape Redfin for-sale and sold real estate listings into a clean dataset — no API key, no login. This Redfin scraper pulls property listings data from any Redfin city or neighborhood search: list price, price per sqft, beds, baths, square footage, year built, HOA dues, MLS status, MLS ID, and map coordinates. Built for developers, analysts, and AI pipelines that need housing market data and home price data in bulk, pay per result.

It uses Chrome TLS impersonation with residential US proxies and automatic session rotation to clear anti-bot walls, so you don't manage proxies or logins.

### ⚡ Quick start

Paste this into the Actor's **Input** (JSON view) and hit **Start**:

```json
{
  "startUrls": [
    { "url": "https://www.redfin.com/city/30818/TX/Austin" }
  ],
  "maxListings": 50
}
```

Each result row looks like:

```json
{
  "street": "1204 Barton Hills Dr",
  "city": "Austin",
  "region": "TX",
  "price": 585000,
  "beds": 3,
  "baths": 2,
  "sqft": 1748,
  "status": "Active",
  "url": "https://www.redfin.com/TX/Austin/1204-Barton-Hills-Dr-78704/home/12345678"
}
```

Or run it from the API:

```
POST https://api.apify.com/v2/acts/jamhimself~redfin-listings-scraper/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN
```

### What you get

| Field | Description |
|---|---|
| `street` / `city` / `region` / `postalCode` | Full address |
| `price` / `priceCurrency` / `pricePerSqft` | List price (or sold price on sold searches) |
| `beds` / `baths` / `sqft` / `lotSizeSqft` / `yearBuilt` | Home facts |
| `hoaPerMonth` | HOA dues, when listed |
| `status` / `soldDate` | MLS status; sold date on sold searches |
| `mlsId` | MLS listing ID |
| `latitude` / `longitude` | Coordinates |
| `url` | Redfin listing page |

### Use cases

- Track home prices and price-per-sqft across cities and neighborhoods
- Build a housing market dataset for analysis or dashboards
- Monitor for-sale inventory and MLS status changes over runs
- Pull sold-listing data for comparable sales research
- Feed property listings into an LLM or RAG pipeline
- Map listings by latitude/longitude for geographic analysis

### Input

- **startUrls** — Redfin city/region search pages, e.g. `https://www.redfin.com/city/30818/TX/Austin`
- **maxListings** — how many listings to return per search (1–3000, default 100; paginates automatically)

### Pricing

Pay per listing delivered. No subscription.

*A quick review on the Apify Store really helps other builders find it.*

# Actor input Schema

## `startUrls` (type: `array`):

Redfin city/region search pages, e.g. https://www.redfin.com/city/30818/TX/Austin

## `maxListings` (type: `integer`):

Maximum listings to return per search.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.redfin.com/city/30818/TX/Austin"
    }
  ],
  "maxListings": 100
}
```

# Actor output Schema

## `listings` (type: `string`):

One row per listing.

# 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 = {
    "startUrls": [
        {
            "url": "https://www.redfin.com/city/30818/TX/Austin"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("jamhimself/redfin-listings-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 = { "startUrls": [{ "url": "https://www.redfin.com/city/30818/TX/Austin" }] }

# Run the Actor and wait for it to finish
run = client.actor("jamhimself/redfin-listings-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 '{
  "startUrls": [
    {
      "url": "https://www.redfin.com/city/30818/TX/Austin"
    }
  ]
}' |
apify call jamhimself/redfin-listings-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/5ZkTex5XQNoLHGmxr/builds/IC87i6LX39eb5XTTk/openapi.json
