# Compare Recently Sold Home Prices in Austin, TX

**Use case:** 

Extract data on recently sold properties in Austin, TX to identify neighborhood-specific price benchmarks and market velocity. Real estate agents and appraisers

## Input

```json
{
  "search": "Austin, TX",
  "mode": "SOLD",
  "maxItems": 150,
  "endPage": 4,
  "scrapeDetails": true
}
```

## Output

```json
{
  "address": {
    "label": "Address",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "integer"
  },
  "beds": {
    "label": "Beds",
    "format": "integer"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "sqft": {
    "label": "Sqft",
    "format": "integer"
  },
  "propertyType": {
    "label": "Type",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "yearBuilt": {
    "label": "Year Built",
    "format": "integer"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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