# Real Estate Deal Analyzer: score any Zillow listing

**Use case:** 

Paste Zillow property URLs and get a deal score, descriptive comp position, and seller-pressure read for each listing.

## 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/12400-Cedar-St-Austin-TX-78732/125904370_zpid/"
  ],
  "zipCodes": [],
  "location": "",
  "investorType": "flipper",
  "rankBy": "dealScore",
  "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
{
  "attentionPriority": {
    "label": "Attention Priority",
    "format": "string"
  },
  "dealScore": {
    "label": "Deal Score (auditable)",
    "format": "object"
  },
  "sellerPressureIndex": {
    "label": "Seller Pressure Index (headline)",
    "format": "object"
  },
  "dealVelocity": {
    "label": "Deal Velocity",
    "format": "number"
  },
  "whyNow": {
    "label": "Why Now",
    "format": "array"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "recommendedAction": {
    "label": "Recommended Action",
    "format": "string"
  },
  "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.