# Redfin Listings Extractor (`xtracto/redfin-listings`) Actor

Extract for-sale and sold real-estate listings from Redfin by region — one listing per row, with price, beds/baths, sqft, lat/long, and URL. Public listing data.

- **URL**: https://apify.com/xtracto/redfin-listings.md
- **Developed by:** [xtractoo](https://apify.com/xtracto) (community)
- **Categories:** Real estate, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
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 Listings Scraper

Extract **for-sale and sold real-estate listings** from Redfin by region — one **listing per row** — with price, beds/baths, square feet, lot size, year built, days on market, $/sqft, HOA, **latitude/longitude**, and the listing URL.

Built for proptech, real-estate investors and funds, lenders and appraisers, and market analysts.

---

### Why use this actor

- **No account, no login required.**
- **One listing per row**, with clean structured fields — drops straight into a pricing or comps model.
- **For-sale or sold**, filterable by property type and price.
- **Geocoded** — every row has latitude/longitude.
- **Stable JSON output** ready for pipelines, spreadsheets, or databases.

### How it works

1. You paste one or more Redfin **region pages** (a city, ZIP, county, or neighborhood URL).
2. You pick **for sale** or **sold**, and optionally property types and a price range.
3. The actor collects every listing in each region — price, beds/baths, size, year built, days on market, coordinates, and the listing link — and streams it into your dataset, ready to download as JSON, CSV, or Excel.

You don't manage any scrapers, accounts, or infrastructure — just paste regions and press **Run**.

### Use cases

**Build a comps / pricing dataset**
Pull sold listings for a set of ZIPs over the last 90 days to feed an automated valuation or comparative-market-analysis model.

**Track a market's for-sale inventory**
Pull active listings across a city's neighborhoods and monitor count, median price, and days on market over time.

**Source investment opportunities**
Filter by property type and price band to surface candidate properties (e.g. condos under $300k) across multiple regions in one run.

### Input

| Field | Type | Description |
| --- | --- | --- |
| `searchUrls` | list | Redfin region pages, e.g. `https://www.redfin.com/city/30818/TX/Austin`. |
| `regions` | json | Advanced: `[{"regionId":"30818","regionType":6}]` (6=city, 5=county, 2=ZIP, 1=neighborhood). |
| `listingStatus` | dropdown | For sale / Sold. |
| `homeTypes` | multi-select | House, Condo, Townhouse, Multi-family, Land, … (empty = all). |
| `soldWithinDays` | integer | Window when status = Sold. |
| `priceBands` | json | Optional price ranges to pull more per region (see tip). |
| `maxPerRegion` | integer | 0 = all available. |

`listingStatus` and `homeTypes` are **pick-lists** — no codes to remember.

### Output — one record per listing

```json
{
  "_input": "city:30818",
  "_source": "S1-gis-csv",
  "_scrapedAt": "2026-06-03T10:00:00Z",
  "recordType": "LISTING",
  "region_label": "city:30818",
  "ADDRESS": "3316 Guadalupe St #213",
  "CITY": "Austin", "STATE OR PROVINCE": "TX", "ZIP OR POSTAL CODE": "78705",
  "PRICE": "155000", "BEDS": "1", "BATHS": "1.0", "SQUARE FEET": "399",
  "PROPERTY TYPE": "Condo/Co-op",
  "LATITUDE": "30.29", "LONGITUDE": "-97.74",
  "URL (SEE ...)": "https://www.redfin.com/TX/Austin/..."
}
````

| Field | Type | Description |
| --- | --- | --- |
| `ADDRESS` | string | Street address. |
| `PRICE` | string | List or sold price. |
| `BEDS` / `BATHS` | string | Bedroom / bathroom count. |
| `SQUARE FEET` | string | Interior size. |
| `LATITUDE` / `LONGITUDE` | string | Coordinates. |

### Tip: pulling more than ~350 per region

Each region returns up to ~350 listings. To pull a dense city in full, add more regions (ZIPs/neighborhoods) or use `priceBands` to split a region into price ranges — results are de-duplicated by address.

### Known limits

- Public listing data, no account needed. Large jobs run best with the residential proxy option (on by default).
- Verified live: Austin returned ~340 listings per region with coordinates and links.

# Actor input Schema

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

Paste Redfin region pages, e.g. https://www.redfin.com/city/30818/TX/Austin or /county/.../neighborhood/... The region id/type are parsed from the URL.

## `regions` (type: `array`):

For zips or when you already know the ids: \[{"regionId":"30818","regionType":6}]. region\_type: 6=city, 5=county, 2=zipcode, 1=neighborhood.

## `listingStatus` (type: `string`):

For-sale (active) or recently sold.

## `homeTypes` (type: `array`):

Leave empty for all types.

## `soldWithinDays` (type: `integer`):

When status is Sold, how many days back to include.

## `priceBands` (type: `array`):

Optional. Sweep price ranges to pull more than ~350 per region: \[\[0,300000],\[300000,600000],\[600000,null]].

## `maxPerRegion` (type: `integer`):

Maximum listings per region (0 = all available).

## `maxConcurrency` (type: `integer`):

How many items to process in parallel.

## `proxyConfiguration` (type: `object`):

Recommended: residential proxy keeps success high at scale.

## Actor input object example

```json
{
  "searchUrls": [
    "https://www.redfin.com/city/30818/TX/Austin"
  ],
  "regions": [],
  "listingStatus": "for_sale",
  "homeTypes": [],
  "soldWithinDays": 90,
  "priceBands": [],
  "maxPerRegion": 0,
  "maxConcurrency": 3,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# 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"
    ],
    "regions": [],
    "priceBands": []
};

// Run the Actor and wait for it to finish
const run = await client.actor("xtracto/redfin-listings").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"],
    "regions": [],
    "priceBands": [],
}

# Run the Actor and wait for it to finish
run = client.actor("xtracto/redfin-listings").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"
  ],
  "regions": [],
  "priceBands": []
}' |
apify call xtracto/redfin-listings --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Redfin Listings Extractor",
        "description": "Extract for-sale and sold real-estate listings from Redfin by region — one listing per row, with price, beds/baths, sqft, lat/long, and URL. Public listing data.",
        "version": "0.1",
        "x-build-id": "F7dyRJIA2YHQtb2S5"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/xtracto~redfin-listings/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-xtracto-redfin-listings",
                "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/xtracto~redfin-listings/runs": {
            "post": {
                "operationId": "runs-sync-xtracto-redfin-listings",
                "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/xtracto~redfin-listings/run-sync": {
            "post": {
                "operationId": "run-sync-xtracto-redfin-listings",
                "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",
                "properties": {
                    "searchUrls": {
                        "title": "Redfin region URLs",
                        "type": "array",
                        "description": "Paste Redfin region pages, e.g. https://www.redfin.com/city/30818/TX/Austin or /county/.../neighborhood/... The region id/type are parsed from the URL.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "regions": {
                        "title": "Explicit regions (advanced)",
                        "type": "array",
                        "description": "For zips or when you already know the ids: [{\"regionId\":\"30818\",\"regionType\":6}]. region_type: 6=city, 5=county, 2=zipcode, 1=neighborhood."
                    },
                    "listingStatus": {
                        "title": "Listing status",
                        "enum": [
                            "for_sale",
                            "sold"
                        ],
                        "type": "string",
                        "description": "For-sale (active) or recently sold.",
                        "default": "for_sale"
                    },
                    "homeTypes": {
                        "title": "Property types",
                        "type": "array",
                        "description": "Leave empty for all types.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "house",
                                "condo",
                                "townhouse",
                                "multifamily",
                                "land",
                                "mobile",
                                "co-op",
                                "other"
                            ],
                            "enumTitles": [
                                "House",
                                "Condo/Co-op",
                                "Townhouse",
                                "Multi-family",
                                "Land",
                                "Mobile",
                                "Co-op",
                                "Other"
                            ]
                        },
                        "default": []
                    },
                    "soldWithinDays": {
                        "title": "Sold within days (when status = Sold)",
                        "minimum": 1,
                        "maximum": 1825,
                        "type": "integer",
                        "description": "When status is Sold, how many days back to include.",
                        "default": 90
                    },
                    "priceBands": {
                        "title": "Price bands (to exceed the ~350/region cap)",
                        "type": "array",
                        "description": "Optional. Sweep price ranges to pull more than ~350 per region: [[0,300000],[300000,600000],[600000,null]]."
                    },
                    "maxPerRegion": {
                        "title": "Max listings per region (0 = all available)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum listings per region (0 = all available).",
                        "default": 0
                    },
                    "maxConcurrency": {
                        "title": "Max concurrent regions",
                        "minimum": 1,
                        "maximum": 8,
                        "type": "integer",
                        "description": "How many items to process in parallel.",
                        "default": 3
                    },
                    "proxyConfiguration": {
                        "title": "Proxy",
                        "type": "object",
                        "description": "Recommended: residential proxy keeps success high at scale.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ]
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
