# Zillow Seattle Real Estate Scraper

**Use case:** 

Scrape Zillow home listings in Seattle with address, price, beds, baths, square footage, home type and listing URL.

## Input

```json
{
  "listingUrl": "https://www.zillow.com/seattle-wa/",
  "maxItems": 25,
  "detailsUrl": [],
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "primaryImageUrl": {
    "label": "Image",
    "format": "image"
  },
  "zpid": {
    "label": "ZPID",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "zip_code": {
    "label": "Zip Code",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "number"
  },
  "bathrooms": {
    "label": "Bathrooms",
    "format": "number"
  },
  "square_feet": {
    "label": "Square Feet",
    "format": "number"
  },
  "lot_size": {
    "label": "Lot Size",
    "format": "number"
  },
  "property_type": {
    "label": "Property Type",
    "format": "string"
  },
  "year_built": {
    "label": "Year Built",
    "format": "number"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "agent_name": {
    "label": "Agent Name",
    "format": "string"
  },
  "agent_phone": {
    "label": "Agent Phone",
    "format": "string"
  },
  "agent_email": {
    "label": "Agent Email",
    "format": "string"
  },
  "agent_company": {
    "label": "Agent Company",
    "format": "string"
  },
  "zestimate": {
    "label": "Zestimate",
    "format": "number"
  },
  "hoa_fees": {
    "label": "HOA Fees",
    "format": "number"
  },
  "coordinates_lat": {
    "label": "Latitude",
    "format": "number"
  },
  "coordinates_lng": {
    "label": "Longitude",
    "format": "number"
  },
  "price_per_square_foot": {
    "label": "Price Per Square Foot",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "posted_date": {
    "label": "Posted Date",
    "format": "date"
  },
  "tags": {
    "label": "Tags",
    "format": "string"
  },
  "images": {
    "label": "Images",
    "format": "string"
  },
  "scrapedTimestamp": {
    "label": "Scraped At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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