# 🏡 Realtor.com Scraper — Property & Agents · $2/1k (`themineworks/realtor-scraper`) Actor

Scrape Realtor.com for-sale and sold listings by city or zip: price, beds, baths, sqft, agent, office, MLS, coordinates and photos. No login, no API key. Use as an MCP server in Claude & AI agents.

- **URL**: https://apify.com/themineworks/realtor-scraper.md
- **Developed by:** [The Mine Works](https://apify.com/themineworks) (community)
- **Categories:** Real estate, MCP servers, Lead generation
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

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 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

## 🏡 Realtor.com Scraper — Property & Agent Data

### What is the Realtor.com Scraper?

The **Realtor.com Scraper** extracts real estate listings from [Realtor.com](https://www.realtor.com) by city or ZIP code — returning clean, structured JSON for every for-sale and recently-sold property, with **no login and no API key**. Give it a location and get back price, beds, baths, square footage, price per sqft, listing agent, brokerage office, county, coordinates, and the listing URL. Every record carries the listing agent and office, making this ideal for real-estate lead lists.

Built lean and HTTP-only, it runs on Apify residential proxies and bills **pay-per-result** — the first 25 properties are free (lifetime), then just **$2 per 1,000 results** ($0.002 each).

### Why scrape Realtor.com?

- 🎯 **Generate agent leads** — every listing includes the agent name and brokerage office.
- 📈 **Analyze the market** — pull active and sold inventory to track price and supply trends.
- 🏦 **Source investment deals** — filter by price and beds across an entire metro.
- 📊 **Run comps & CMAs** — combine for-sale and sold data for accurate valuations.
- 🤖 **Feed AI & data products** — deliver structured housing data straight into your pipeline.

### Go beyond the limits of the official Realtor.com API

Realtor.com has no public listings API for developers — its data partnerships are gated, expensive, and coverage-limited. This actor talks directly to Realtor.com's own search backend over plain HTTP, so you are not capped by the row limits, rate limits, or licensing restrictions of a third-party feed. You choose the location, the filters, and the volume. No API key, no account, no unblocker subscription.

### What data does the Realtor.com Scraper extract?

| | |
|---|---|
| 🏠 Full street address | 💰 List price |
| 🏙️ City, state, ZIP | 🗺️ County |
| 🛏️ Bedrooms | 🛁 Bathrooms |
| 📏 Interior sqft | 🌳 Lot sqft |
| 📐 Price per sqft | 🏗️ Year built |
| 🏡 Property type & sub-type | 🔖 Listing status |
| 💵 Monthly HOA fee | 📅 List date |
| 🏷️ Last sold price | 🗓️ Last sold date |
| 📍 Latitude & longitude | 📷 Primary photo URL |
| 👤 Listing agent name | 🏢 Brokerage office name |
| 🔗 Realtor.com listing URL | 🆔 Property & listing ID |

### How to scrape Realtor.com in 5 steps

1. Create a free [Apify account](https://console.apify.com/sign-up).
2. Open the **Realtor.com Scraper** and enter a **location** (e.g. `Austin, TX`, `78704`).
3. Optionally set `maxItems`, `soldMode`, `minPrice`, `maxPrice`, or `minBeds`.
4. Click **Start** and let the actor page through results.
5. Download your data as **JSON, CSV, or Excel**, or pull it via the Apify API.

### Example input

```json
{
  "location": "Austin, TX",
  "maxItems": 100,
  "soldMode": false,
  "minPrice": 400000,
  "minBeds": 3,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"],
    "apifyProxyCountry": "US"
  }
}
````

To scrape recently-sold homes with sold price and date, set `"soldMode": true`.

### Example output

Each property is returned as a flat JSON record:

```json
{
  "propertyId": "1234567890",
  "listingId": "2987654321",
  "status": "for_sale",
  "address": "1234 Barton Springs Rd",
  "city": "Austin",
  "state": "TX",
  "zip": "78704",
  "county": "Travis",
  "price": 749000,
  "lastSoldPrice": null,
  "lastSoldDate": null,
  "beds": 3,
  "baths": 2,
  "sqft": 1720,
  "lotSqft": 6098,
  "yearBuilt": 2005,
  "propertyType": "single_family",
  "propertySubType": null,
  "pricePerSqft": 435,
  "hoaFee": null,
  "listDate": "2026-06-28T00:00:00Z",
  "latitude": 30.2621,
  "longitude": -97.7712,
  "photoCount": 34,
  "photoUrl": "https://ap.rdcpix.com/abc123/1234567890-m0o.jpg",
  "agentName": "John Doe",
  "officeName": "Keller Williams Realty",
  "url": "https://www.realtor.com/realestateandhomes-detail/1234-Barton-Springs-Rd_Austin_TX_78704_M12345-67890",
  "scraped_at": "2026-07-10T18:20:44.301Z"
}
```

*Field availability depends on what Realtor.com publishes for each listing; `lastSoldPrice` and `lastSoldDate` populate in recently-sold mode. Null fields are omitted from the record.*

### Use cases

- **Real-estate lead generation** — extract agent and brokerage names for outreach and CRM.
- **Comparable sales & CMA** — pull sold inventory in a ZIP to value a subject property.
- **Investor deal sourcing** — filter by price band and beds to surface candidates across a metro.
- **Price & inventory monitoring** — re-run on a schedule to track new listings and price changes.
- **Cross-portal enrichment** — combine with Redfin and Zillow data for full market coverage.
- **AI real estate assistants** — supply live listing data to LLM agents and valuation models.

### FAQ

#### Do I need a Realtor.com account or API key?

No. The scraper requires no login, no cookies, and no API key. You only need an Apify account to run it.

#### Can I scrape recently-sold homes?

Yes. Set `soldMode` to `true` and the actor returns recently-sold homes with their last sold price and date instead of active for-sale listings.

#### How much does the Realtor.com Scraper cost?

Pay-per-result: the first 25 properties are free (lifetime), then **$2 per 1,000 results** ($0.002 per property). You only pay for properties actually returned.

#### How do I target a specific area?

Pass a ZIP code (`78704`) to narrow to one area, or a city with state (`Austin, TX`) for metro-wide results.

#### Is scraping Realtor.com legal?

Scraping publicly available listing data is generally permissible, but results may include personal data (e.g. agent names) protected under laws like GDPR. Ensure you have a legitimate purpose and comply with applicable regulations.

### Use in Claude, ChatGPT & any MCP agent

This actor is available as a hosted **MCP server**, so AI agents can call it directly:

```
https://mcp.apify.com/?tools=themineworks/realtor-scraper
```

Add that endpoint to Claude, ChatGPT, or any MCP-compatible client and ask it to pull Realtor.com listings on demand. Or call it from code with the Apify client:

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

const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });

const run = await client.actor('themineworks/realtor-scraper').call({
  location: 'Austin, TX',
  maxItems: 100,
  minBeds: 3,
});

const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);
```

### Related real estate scrapers

Chain these siblings into a full property-data pipeline:

- [Redfin Scraper](https://apify.com/themineworks/redfin-scraper) — Redfin for-sale & sold listings by location.
- [Zillow Search Scraper](https://apify.com/themineworks/zillow-search-scraper) — Zillow for-sale listings by location.
- [Zillow Property Details Scraper](https://apify.com/themineworks/zillow-property-details) — full Zillow detail pages by URL/ZPID.
- [Zillow Recently Sold Scraper](https://apify.com/themineworks/zillow-recently-sold) — Zillow sold comps for CMA.
- [Zillow Rental Listings Scraper](https://apify.com/themineworks/zillow-rental-listings) — Zillow for-rent listings.

# Actor input Schema

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

City with state or ZIP code (e.g. "Austin, TX", "78704").

## `maxItems` (type: `integer`):

Maximum number of properties to scrape. First 25 lifetime are free.

## `soldMode` (type: `boolean`):

Off = for-sale listings. On = recently-sold homes with sold price and date.

## `minPrice` (type: `integer`):

Only return properties priced at or above this value.

## `maxPrice` (type: `integer`):

Only return properties priced at or below this value.

## `minBeds` (type: `integer`):

Only return properties with at least this many bedrooms.

## `proxyConfig` (type: `object`):

Apify proxy settings. US residential recommended for Realtor.com.

## Actor input object example

```json
{
  "location": "Austin, TX",
  "maxItems": 5,
  "soldMode": false,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

# 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",
    "maxItems": 5,
    "proxyConfig": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "US"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("themineworks/realtor-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",
    "maxItems": 5,
    "proxyConfig": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "US",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("themineworks/realtor-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 '{
  "location": "Austin, TX",
  "maxItems": 5,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}' |
apify call themineworks/realtor-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "🏡 Realtor.com Scraper — Property & Agents · $2/1k",
        "description": "Scrape Realtor.com for-sale and sold listings by city or zip: price, beds, baths, sqft, agent, office, MLS, coordinates and photos. No login, no API key. Use as an MCP server in Claude & AI agents.",
        "version": "0.1",
        "x-build-id": "4JucYWVq2oKNUrfcw"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/themineworks~realtor-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-themineworks-realtor-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/themineworks~realtor-scraper/runs": {
            "post": {
                "operationId": "runs-sync-themineworks-realtor-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/themineworks~realtor-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-themineworks-realtor-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": [
                    "location"
                ],
                "properties": {
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "City with state or ZIP code (e.g. \"Austin, TX\", \"78704\").",
                        "default": "Austin, TX"
                    },
                    "maxItems": {
                        "title": "Max properties",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Maximum number of properties to scrape. First 25 lifetime are free.",
                        "default": 5
                    },
                    "soldMode": {
                        "title": "Recently-sold mode",
                        "type": "boolean",
                        "description": "Off = for-sale listings. On = recently-sold homes with sold price and date.",
                        "default": false
                    },
                    "minPrice": {
                        "title": "Minimum price (USD)",
                        "type": "integer",
                        "description": "Only return properties priced at or above this value."
                    },
                    "maxPrice": {
                        "title": "Maximum price (USD)",
                        "type": "integer",
                        "description": "Only return properties priced at or below this value."
                    },
                    "minBeds": {
                        "title": "Minimum bedrooms",
                        "type": "integer",
                        "description": "Only return properties with at least this many bedrooms."
                    },
                    "proxyConfig": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify proxy settings. US residential recommended for Realtor.com.",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
