# Realtor.com Agent Leads Scraper by ZIP — Austin

**Use case:** 

Scrape Realtor.com listings with the listing agent's email, phone & brokerage by ZIP code. Example: for-sale homes in Austin, TX (78704). Export to CSV/JSON.

## Input

```json
{
  "mode": "zipSearch",
  "zipCodes": [
    "78704"
  ],
  "listingStatus": "forSale",
  "maxResults": 20,
  "requestDelayMs": 400
}
```

## Output

```json
{
  "propertyId": {
    "label": "Property ID",
    "format": "text"
  },
  "url": {
    "label": "Listing URL",
    "format": "link"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "sqft": {
    "label": "Sqft",
    "format": "number"
  },
  "streetAddress": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zip": {
    "label": "ZIP",
    "format": "text"
  },
  "agentName": {
    "label": "Agent",
    "format": "text"
  },
  "agentEmail": {
    "label": "Agent email",
    "format": "text"
  },
  "agentEmailMasked": {
    "label": "Email masked",
    "format": "boolean"
  },
  "agentPhone": {
    "label": "Agent phone",
    "format": "text"
  },
  "brokerName": {
    "label": "Brokerage",
    "format": "text"
  },
  "mode": {
    "label": "Mode",
    "format": "text"
  },
  "searchZip": {
    "label": "Search ZIP",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Realtor.com Scraper — Real Estate Agent Leads, Emails & Phones](https://apify.com/juramoshkov/realtor-property-agent-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/juramoshkov/realtor-property-agent-scraper) to learn more, explore other use cases, and run it yourself.