# Rental Property Yield Analyzer for Zillow listings

**Use case:** 

Analyze Zillow listings for rental yield and cash flow: rent estimate over price, ranked, with a deal score per property.

## Input

```json
{
  "mode": "properties",
  "searchUrls": [],
  "propertyUrls": [
    "https://www.zillow.com/homedetails/Austin-TX-78745/29500899_zpid/",
    "https://www.zillow.com/homedetails/Austin-TX-78750/29566280_zpid/",
    "https://www.zillow.com/homedetails/Austin-TX-78724/251029653_zpid/"
  ],
  "zipCodes": [],
  "location": "",
  "investorType": "cashflow",
  "rankBy": "yield",
  "watchlistName": "",
  "changeWindowDays": 7,
  "deltaWindowDays": 7,
  "alerts": {},
  "filters": {},
  "outputProfile": "signals",
  "limits": {
    "maxListings": 120,
    "maxDetails": 60
  },
  "maxRuntimeSeconds": 3600,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "address": {
    "label": "Address",
    "format": "string"
  },
  "yieldScore": {
    "label": "Yield Score",
    "format": "number"
  },
  "rentZestimate": {
    "label": "Rent Zestimate",
    "format": "number"
  },
  "price": {
    "label": "List Price (USD)",
    "format": "number"
  },
  "dealScore": {
    "label": "Deal Score (auditable)",
    "format": "object"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Zillow Scraper — Deal Finder, Price Cuts & Market Monitor](https://apify.com/ryanclinton/zillow-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ryanclinton/zillow-scraper) to learn more, explore other use cases, and run it yourself.