# Export Zillow Property Details by URL

**Use case:** 

Export Zillow property details from one public home URL, including price, address, beds, baths, living area, year built, estimates, status, and history.

## Input

```json
{
  "propertyUrls": [
    {
      "url": "https://www.zillow.com/homedetails/2114-Bigelow-Ave-N-Seattle-WA-98109/48749425_zpid/"
    }
  ],
  "zpids": [
    "15800416"
  ],
  "maxItems": 1,
  "includePhotos": false,
  "includeHistory": true,
  "maxRetries": 2,
  "requestTimeoutSecs": 30,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "status": {
    "label": "Status",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "zpid": {
    "label": "ZPID",
    "format": "string"
  },
  "canonicalUrl": {
    "label": "Canonical URL",
    "format": "string"
  },
  "homeStatus": {
    "label": "Home status",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "object"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "livingArea": {
    "label": "Living area",
    "format": "number"
  },
  "yearBuilt": {
    "label": "Year built",
    "format": "number"
  },
  "propertyType": {
    "label": "Property type",
    "format": "string"
  },
  "errorCode": {
    "label": "Error code",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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