# Scrape Miami Beach homes for sale by ZIP code

**Use case:** 

Extract Redfin listings for ZIP 33139 (Miami Beach). Prices, HOA dues, year built, days on market. Ready to run - just press start.

## Input

```json
{
  "urls": [
    "https://www.redfin.com/zipcode/33139"
  ],
  "locations": [
    "20001",
    "Philadelphia",
    "New York"
  ],
  "sampleUrl": "https://www.redfin.com/city/15502/PA/Philadelphia/filter/min-beds=0,max-beds=4,guest-house,air-conditioning",
  "searchLimit": 100,
  "proxySettings": {
    "useApifyProxy": false
  },
  "onlyNew": false
}
```

## Output

```json
{
  "propertyId": {
    "label": "ID",
    "format": "string"
  },
  "mainPhoto": {
    "label": "Photo",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "requiresAuth": {
    "label": "Auth Req.",
    "format": "boolean"
  },
  "redfinListingType": {
    "label": "Listing Type",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "priceType": {
    "label": "Price Type",
    "format": "string"
  },
  "priceDisplayLevel": {
    "label": "Price Access",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "zipCode": {
    "label": "ZIP",
    "format": "string"
  },
  "beds": {
    "label": "Beds",
    "format": "integer"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "bathFull": {
    "label": "Full Baths",
    "format": "integer"
  },
  "bathPartial": {
    "label": "Partial Baths",
    "format": "integer"
  },
  "bathTotal": {
    "label": "Total Baths",
    "format": "number"
  },
  "sqft": {
    "label": "Sq Ft",
    "format": "integer"
  },
  "lotSize": {
    "label": "Lot Size",
    "format": "number"
  },
  "propertyType": {
    "label": "Prop. Type",
    "format": "string"
  },
  "isNewConstruction": {
    "label": "New Constr.",
    "format": "boolean"
  },
  "yearBuilt": {
    "label": "Year Built",
    "format": "integer"
  },
  "hoaDues": {
    "label": "HOA/mo",
    "format": "number"
  },
  "mls": {
    "label": "MLS #",
    "format": "string"
  },
  "brokerName": {
    "label": "Brokerage",
    "format": "string"
  },
  "daysOnMarket": {
    "label": "Days on Mkt",
    "format": "integer"
  },
  "listingAddedDate": {
    "label": "Listed",
    "format": "string"
  },
  "lastSaleDate": {
    "label": "Last Sale",
    "format": "string"
  },
  "url": {
    "label": "Link",
    "format": "string"
  },
  "photos": {
    "label": "All Photos",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Redfin Property Search Scraper](https://apify.com/mantisus/redfin-fast-scraper-per-results) with a specific input configuration. Visit the [Actor detail page](https://apify.com/mantisus/redfin-fast-scraper-per-results) to learn more, explore other use cases, and run it yourself.