# Scrape recently sold homes from a Zillow URL

**Use case:** 

Paste a Zillow sold-listings URL and export recently sold homes with sale price and date — ideal for building pricing comps fast.

## Input

```json
{
  "zillowUrl": "https://www.zillow.com/beverly-hills-ca/sold/",
  "maxProperties": 10,
  "mode": "url"
}
```

## Output

```json
{
  "mainPhoto": {
    "label": "Main Photo URL",
    "format": "string"
  },
  "hdpUrl": {
    "label": "Listing URL",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "status": {
    "label": "Listing Status",
    "format": "string"
  },
  "streetAddress": {
    "label": "Street Address",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "agentName": {
    "label": "Agent Name",
    "format": "string"
  },
  "agentEmail": {
    "label": "Agent Email",
    "format": "string"
  },
  "cellPhone": {
    "label": "Agent Phone",
    "format": "string"
  },
  "brokerName": {
    "label": "Brokerage / Listing Company Name",
    "format": "string"
  },
  "zestimate": {
    "label": "Zestimate",
    "format": "number"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "integer"
  },
  "bathrooms": {
    "label": "Bathrooms",
    "format": "integer"
  },
  "livingArea": {
    "label": "Living Area (sqft)",
    "format": "integer"
  },
  "yearBuilt": {
    "label": "Year Built",
    "format": "integer"
  },
  "zpid": {
    "label": "ZPID",
    "format": "string"
  }
}
```

## About this Actor

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