# Find Zillow Seattle Condos for Sale

**Use case:** 

Find Zillow Seattle Condos for Sale with structured public listing data for buyer and broker analysis.

## Input

```json
{
  "maxItems": 100,
  "location": "Seattle WA",
  "locationType": "",
  "operation": "buy",
  "sortBy": "newest",
  "minPrice": 0,
  "maxPrice": 900000,
  "minBeds": 0,
  "maxBeds": 0,
  "minBaths": 0,
  "homeTypes": [
    "condos"
  ],
  "minSize": "",
  "maxSize": "",
  "minLotSize": "",
  "maxLotSize": "",
  "airConditioning": false,
  "pool": false,
  "waterfront": false,
  "singleStory": false,
  "basement": false,
  "3dTour": false,
  "timeOnZillow": "",
  "minTimeOnZillow": "",
  "keywords": "",
  "maxHoaFees": "",
  "parkingSpots": "",
  "garage": false,
  "agentListed": true,
  "ownerPosted": true,
  "newConstruction": true,
  "foreclosure": true,
  "auction": true,
  "foreclosed": false,
  "preForeclosure": false,
  "comingSoon": true,
  "priceDrop": false,
  "acceptingBackupOffers": false,
  "pendingUnderContract": false,
  "showcase": false,
  "openHouse": false,
  "hideNoMoveInDate": false,
  "pets": [],
  "inUnitLaundry": false,
  "onSiteParking": false,
  "elevator": false,
  "highSpeedInternet": false,
  "furnished": false,
  "outdoorSpace": false,
  "utilitiesIncluded": false,
  "hardwoodFloors": false,
  "disabilityAccess": false,
  "incomeRestricted": false,
  "apartmentCommunity": false,
  "acceptsZillowApplications": false,
  "tourScheduling": false,
  "shortTermLease": false,
  "maxSoldDate": "",
  "fetchDetails": false,
  "flattenOutput": false
}
```

## Output

```json
{
  "zpid": {
    "label": "ID",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "media.propertyPhotoLinks.highResolutionLink": {
    "label": "Image",
    "format": "image"
  },
  "address.streetAddress": {
    "label": "Address",
    "format": "text"
  },
  "address.city": {
    "label": "City",
    "format": "text"
  },
  "address.state": {
    "label": "State",
    "format": "text"
  },
  "address.zipcode": {
    "label": "ZIP",
    "format": "text"
  },
  "location.latitude": {
    "label": "Lat",
    "format": "number"
  },
  "location.longitude": {
    "label": "Lng",
    "format": "number"
  },
  "propertyType": {
    "label": "Type",
    "format": "text"
  },
  "bedrooms": {
    "label": "Beds",
    "format": "number"
  },
  "bathrooms": {
    "label": "Baths",
    "format": "number"
  },
  "livingArea": {
    "label": "Sqft",
    "format": "number"
  },
  "yearBuilt": {
    "label": "Year",
    "format": "number"
  },
  "unitsGroup": {
    "label": "Units",
    "format": "object"
  },
  "price.value": {
    "label": "Price",
    "format": "number"
  },
  "price.pricePerSquareFoot": {
    "label": "Price / Sqft",
    "format": "number"
  },
  "price.priceChange": {
    "label": "Price Change",
    "format": "number"
  },
  "listing.listingStatus": {
    "label": "Status",
    "format": "text"
  },
  "daysOnZillow": {
    "label": "Days on Zillow",
    "format": "number"
  },
  "propertyDisplayRules.mls.brokerName": {
    "label": "Broker",
    "format": "text"
  }
}
```

## About this Actor

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