# Scrape real estate listings in Austin, TX

**Use case:** 

Get Redfin home listings in Austin, TX — price, beds, baths, sqft, address & status as clean structured data for market research and lead lists.

## Input

```json
{
  "location": "Austin, TX",
  "searchUrls": [
    {
      "url": "https://www.redfin.com/city/30749/NY/New-York/filter/property-type=house"
    }
  ],
  "maxListings": 100,
  "scrapeDetails": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "address": {
    "label": "Address",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "sqft": {
    "label": "Sq Ft",
    "format": "number"
  },
  "propertyType": {
    "label": "Type",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "yearBuilt": {
    "label": "Year Built",
    "format": "number"
  },
  "url": {
    "label": "Listing URL",
    "format": "link"
  },
  "photoUrl": {
    "label": "Photo",
    "format": "image"
  }
}
```

## About this Actor

This example demonstrates how to use [Redfin Scraper - Real Estate Property Data](https://apify.com/lulzasaur/redfin-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/lulzasaur/redfin-scraper) to learn more, explore other use cases, and run it yourself.