# Zillow Scraper — Property Pages to Clean CSV/JSON Data

**Use case:** 

Scrape any Zillow property page into structured data — price, Zestimate, tax & price history, photos, agent contact. Paste URLs, export CSV/JSON. Free to try.

## Input

```json
{
  "propertyUrls": [
    "https://www.zillow.com/homedetails/10411-Turnbull-Loop-Austin-TX-78717/243335909_zpid/",
    "https://www.zillow.com/homedetails/671-Lincoln-Ave-Winnetka-IL-60093/3360197_zpid/",
    "https://www.zillow.com/homedetails/1709-Broderick-St-San-Francisco-CA-94115/15083084_zpid/"
  ],
  "zpids": [
    "243335909"
  ],
  "addresses": [
    "10411 Turnbull Loop, Austin, TX 78717"
  ],
  "includeComparableHomes": false,
  "includeClimateRisk": false,
  "includeZestimateHistory": false
}
```

## Output

```json
{
  "zpid": {
    "label": "🔢 ZPID",
    "format": "integer"
  },
  "zillowUrl": {
    "label": "🔗 Zillow URL",
    "format": "string"
  },
  "streetAddress": {
    "label": "🏡 Street",
    "format": "string"
  },
  "city": {
    "label": "🌆 City",
    "format": "string"
  },
  "state": {
    "label": "🗺 State",
    "format": "string"
  },
  "zipcode": {
    "label": "📮 ZIP",
    "format": "string"
  },
  "price": {
    "label": "💰 Price",
    "format": "number"
  },
  "zestimate": {
    "label": "📊 Zestimate",
    "format": "number"
  },
  "rentZestimate": {
    "label": "🏦 Rent Zestimate",
    "format": "number"
  },
  "lastSoldPrice": {
    "label": "🤝 Last Sold",
    "format": "number"
  },
  "currency": {
    "label": "💱 Currency",
    "format": "string"
  },
  "homeStatus": {
    "label": "🏷 Status",
    "format": "string"
  },
  "homeType": {
    "label": "🏠 Type",
    "format": "string"
  },
  "bedrooms": {
    "label": "🛏 Beds",
    "format": "number"
  },
  "bathrooms": {
    "label": "🛁 Baths",
    "format": "number"
  },
  "livingArea": {
    "label": "📐 Living Area",
    "format": "number"
  },
  "livingAreaUnits": {
    "label": "📏 Area Unit",
    "format": "string"
  },
  "lotAreaValue": {
    "label": "🌳 Lot Size",
    "format": "number"
  },
  "lotAreaUnits": {
    "label": "🌲 Lot Unit",
    "format": "string"
  },
  "yearBuilt": {
    "label": "🏗 Year Built",
    "format": "integer"
  },
  "daysOnZillow": {
    "label": "⏳ Days Listed",
    "format": "integer"
  },
  "datePosted": {
    "label": "📅 Posted",
    "format": "string"
  },
  "monthlyHoaFee": {
    "label": "🏢 HOA/mo",
    "format": "number"
  },
  "propertyTaxRate": {
    "label": "🧾 Tax Rate %",
    "format": "number"
  },
  "annualHomeownersInsurance": {
    "label": "🛡 Insurance/yr",
    "format": "number"
  },
  "agentName": {
    "label": "🧑‍💼 Agent",
    "format": "string"
  },
  "agentPhoneNumber": {
    "label": "📞 Agent Phone",
    "format": "string"
  },
  "agentEmail": {
    "label": "📧 Agent Email",
    "format": "string"
  },
  "agentLicenseNumber": {
    "label": "🪪 Agent License",
    "format": "string"
  },
  "brokerName": {
    "label": "🏛 Broker",
    "format": "string"
  },
  "brokerPhoneNumber": {
    "label": "☎️ Broker Phone",
    "format": "string"
  },
  "coAgentName": {
    "label": "🧑‍💼 Co-Agent",
    "format": "string"
  },
  "coAgentPhoneNumber": {
    "label": "📱 Co-Agent Phone",
    "format": "string"
  },
  "brokerageName": {
    "label": "🏢 Brokerage",
    "format": "string"
  },
  "mlsId": {
    "label": "🆔 MLS ID",
    "format": "string"
  },
  "mlsName": {
    "label": "📇 MLS",
    "format": "string"
  },
  "priceHistory": {
    "label": "📈 Price History",
    "format": "array"
  },
  "taxHistory": {
    "label": "🧾 Tax History",
    "format": "array"
  },
  "schools": {
    "label": "🏫 Schools",
    "format": "array"
  },
  "comparableHomes": {
    "label": "🏘 Comps",
    "format": "array"
  },
  "climateRisk": {
    "label": "🌊 Climate Risk",
    "format": "object"
  },
  "zestimateHistory": {
    "label": "📉 Zestimate History",
    "format": "array"
  },
  "enrichmentsApplied": {
    "label": "➕ Add-ons",
    "format": "array"
  },
  "propertyDescription": {
    "label": "📝 Description",
    "format": "string"
  },
  "photoCount": {
    "label": "📷 Photos",
    "format": "integer"
  },
  "photoUrls": {
    "label": "🖼 Photo URLs",
    "format": "array"
  },
  "hiResImageLink": {
    "label": "🌄 Hero Photo",
    "format": "string"
  },
  "pageViewCount": {
    "label": "👁 Page Views",
    "format": "integer"
  },
  "favoriteCount": {
    "label": "❤️ Saves",
    "format": "integer"
  },
  "county": {
    "label": "🗂 County",
    "format": "string"
  },
  "countyFIPS": {
    "label": "🔖 FIPS",
    "format": "string"
  },
  "parcelId": {
    "label": "📜 Parcel ID",
    "format": "string"
  },
  "latitude": {
    "label": "📍 Lat",
    "format": "number"
  },
  "longitude": {
    "label": "📍 Lng",
    "format": "number"
  },
  "lookupMode": {
    "label": "🧭 Lookup Mode",
    "format": "string"
  },
  "inputQuery": {
    "label": "⌨️ Input",
    "format": "string"
  },
  "scrapedAt": {
    "label": "🕒 Scraped At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Zillow Property Detail API — Address · URL · ZPID Lookup](https://apify.com/sian.agency/zillow-property-detail-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sian.agency/zillow-property-detail-scraper) to learn more, explore other use cases, and run it yourself.