# Austin TX Homes for Sale - Zillow Listings Dataset

**Use case:** 

Export current Austin, TX homes for sale from Zillow with prices, beds, baths, square footage, and street addresses. Download as CSV or JSON.

## Input

```json
{
  "urls": [
    "https://www.zillow.com/homedetails/341-Hancock-St-Brooklyn-NY-11216/30610240_zpid/"
  ],
  "location": "Austin, TX",
  "status": "for_sale",
  "resultType": "list",
  "maxResults": 50,
  "sort": "newest",
  "zoom": 13,
  "includePhotos": false,
  "includeSchools": false,
  "includeSimilar": false,
  "includeNearby": false,
  "includeHistory": false,
  "includeAgent": false,
  "includeAffordability": false,
  "includeZestimateHistory": false,
  "includeFloorPlans": false,
  "includeComps": false,
  "includeBuildingPhotos": false,
  "includeBuildingSchools": false,
  "includeBuildingNearby": false,
  "includeBuildingMarket": false,
  "includeBuildingReviews": false,
  "enrichSearchResults": false,
  "apiBaseUrl": "https://api.zillow-pulse.co",
  "maxConcurrency": 5,
  "requestTimeout": 30
}
```

## Output

```json
{
  "zpid": {
    "label": "ZPID",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "price_formatted": {
    "label": "Price",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "home_type": {
    "label": "Type",
    "format": "text"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "sqft": {
    "label": "Sqft",
    "format": "number"
  },
  "days_on_zillow": {
    "label": "Days on Zillow",
    "format": "number"
  },
  "detail_url": {
    "label": "Zillow URL",
    "format": "link"
  },
  "image_url": {
    "label": "Photo",
    "format": "image"
  }
}
```

## About this Actor

This example demonstrates how to use [Zillow Listings Intelligence](https://apify.com/jdtpnjtp/zillow-property-building-intelligence) with a specific input configuration. Visit the [Actor detail page](https://apify.com/jdtpnjtp/zillow-property-building-intelligence) to learn more, explore other use cases, and run it yourself.