# Redfin Listing Scraper (`moving_beacon-owner1/redfin-listing-scraper`) Actor

Scrapes real-estate listings from Redfin by US city, neighborhood, county, or ZIP code, capturing prices, beds, baths, square footage, lot size, year built, days on market, property type, MLS numbers, coordinates, descriptions, and listing URLs, with filters for price, bedrooms, and listing type.

- **URL**: https://apify.com/moving\_beacon-owner1/redfin-listing-scraper.md
- **Developed by:** [Jamshaid Arif](https://apify.com/moving_beacon-owner1) (community)
- **Stats:** 2 total users, 1 monthly users, 50.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $9.99 / 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.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#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 Listing Scraper

Collects real-estate listings from Redfin for any US city, neighborhood, county or ZIP code. Choose for-sale or for-rent listings, optionally narrow by price and bedroom count, and get one flat record per property with address, price, beds, baths, square footage, lot size, year built, days on market, property type, MLS number, geo coordinates and the listing URL.

### Input

| Field | Default | Description |
| --- | --- | --- |
| `location` | `Austin, TX` | US location to search: `City, ST`, a neighborhood, a county, a 5-digit ZIP code, or a Redfin region page URL. |
| `listing_type` | `for_sale` | Which listings to collect: `for_sale` or `for_rent`. |
| `min_price` | `0` | Lowest price in US dollars (monthly rent for `for_rent`). `0` means no lower limit. |
| `max_price` | `0` | Highest price in US dollars (monthly rent for `for_rent`). `0` means no upper limit. |
| `min_beds` | `0` | Only return homes with at least this many bedrooms. `0` means any. |
| `max_results` | `50` | Maximum listings to return (1–1000, 100 per page). |
| `proxyConfiguration` | Optional | Enable a US-based proxy for the most reliable results. |

### Output

Each result is one property listing:

```json
{
    "property_id": "31256680",
    "listing_id": "222537959",
    "address": "5707 Highland Hills Dr",
    "city": "Austin",
    "state": "TX",
    "zip_code": "78731",
    "neighborhood": "Northwest Hills",
    "price": 1250000,
    "price_max": null,
    "beds": 4,
    "baths": 3.0,
    "sqft": 3002,
    "lot_size": null,
    "year_built": 1956,
    "days_on_market": 5,
    "price_per_sqft": 416,
    "hoa_month": null,
    "property_type": "House",
    "status": "Coming Soon",
    "mls_number": "2174796702669855121",
    "listing_type": "for_sale",
    "building_name": "",
    "available_units": null,
    "last_sold_date": "2019-03-06",
    "description": "Set on a large, beautifully landscaped lot in Northwest Hills...",
    "latitude": 30.3512,
    "longitude": -97.7681,
    "photo_count": 34,
    "url": "https://www.redfin.com/TX/Austin/5707-Highland-Hills-Dr-78731/home/31256680",
    "region": "Austin, TX, USA",
    "raw": { ... }
}
```

Rental results carry `building_name`, `available_units` and a rent range in `price` / `price_max`.

### Notes

- Runs with empty input (defaults to for-sale listings in Austin, TX).
- Enable a US-based proxy for the most reliable results.
- Intended for research and market analysis; please respect Redfin's terms of service.

# Actor input Schema

## `location` (type: `string`):

US location to search: 'City, ST' (e.g. 'Austin, TX'), a neighborhood, a county, a 5-digit ZIP code, or a full Redfin region page URL.

## `listing_type` (type: `string`):

Which set of listings to collect for the location.

## `min_price` (type: `integer`):

Lowest price to include, in US dollars (monthly rent when listing type is 'For rent'). Use 0 for no lower limit.

## `max_price` (type: `integer`):

Highest price to include, in US dollars (monthly rent when listing type is 'For rent'). Use 0 for no upper limit.

## `min_beds` (type: `integer`):

Only return homes with at least this many bedrooms. Use 0 for any.

## `max_results` (type: `integer`):

Maximum number of listings to return. Results are paged 100 per page.

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

Proxy settings for the run. Enable a US-based proxy for the most reliable results, especially for sites that limit non-US or datacenter traffic. Optional — leave off to run directly.

## Actor input object example

```json
{
  "location": "Austin, TX",
  "listing_type": "for_sale",
  "min_price": 0,
  "max_price": 0,
  "min_beds": 0,
  "max_results": 50,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# 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 = {
    "location": "Austin, TX",
    "listing_type": "for_sale",
    "min_price": 0,
    "max_price": 0,
    "min_beds": 0,
    "max_results": 50,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("moving_beacon-owner1/redfin-listing-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 = {
    "location": "Austin, TX",
    "listing_type": "for_sale",
    "min_price": 0,
    "max_price": 0,
    "min_beds": 0,
    "max_results": 50,
    "proxyConfiguration": { "useApifyProxy": True },
}

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

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

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

```

## CLI example

```bash
echo '{
  "location": "Austin, TX",
  "listing_type": "for_sale",
  "min_price": 0,
  "max_price": 0,
  "min_beds": 0,
  "max_results": 50,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call moving_beacon-owner1/redfin-listing-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,moving_beacon-owner1/redfin-listing-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/nKa2NWqe7xUMlH14l/builds/K62GrghJNUWwpIgeG/openapi.json
