# Redfin Property Data & Estimate Scraper — Austin

**Use case:** 

Scrape Redfin property data — the Redfin Estimate, price & tax history, photos, schools + listing agent — by ZIP. Example: Austin, TX (78704). Export CSV/JSON.

## Input

```json
{
  "mode": "zipSearch",
  "zipCodes": [
    "78704"
  ],
  "cities": [
    "Seattle, WA"
  ],
  "listingStatus": "forSale",
  "maxResults": 20,
  "requestDelayMs": 1200
}
```

## Output

```json
{
  "propertyId": {
    "label": "Property ID",
    "format": "text"
  },
  "url": {
    "label": "Listing URL",
    "format": "link"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "redfinEstimate": {
    "label": "Redfin Estimate",
    "format": "number"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "sqft": {
    "label": "Sqft",
    "format": "number"
  },
  "yearBuilt": {
    "label": "Year built",
    "format": "number"
  },
  "propertyType": {
    "label": "Type",
    "format": "text"
  },
  "streetAddress": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zip": {
    "label": "ZIP",
    "format": "text"
  },
  "hoaFee": {
    "label": "HOA",
    "format": "number"
  },
  "propertyTax": {
    "label": "Property tax",
    "format": "number"
  },
  "daysOnMarket": {
    "label": "Days on market",
    "format": "number"
  },
  "agentName": {
    "label": "Listing agent",
    "format": "text"
  },
  "brokerName": {
    "label": "Brokerage",
    "format": "text"
  },
  "mode": {
    "label": "Mode",
    "format": "text"
  },
  "searchZip": {
    "label": "Search ZIP",
    "format": "text"
  },
  "searchCity": {
    "label": "Search city",
    "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 [Redfin Scraper — Property Data, Redfin Estimate & Agent](https://apify.com/juramoshkov/redfin-property-agent-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/juramoshkov/redfin-property-agent-scraper) to learn more, explore other use cases, and run it yourself.