# Bulk-scrape Redfin listings across multiple ZIP codes with o

**Use case:** 

Apply one Redfin filter URL to a whole list of ZIP codes or cities. Collect thousands of listings in a single run. No copy-pasting URLs.

## Input

```json
{
  "urls": [
    "https://www.redfin.com/zipcode/20024/filter/min-beds=0,min-baths=2,air-conditioning",
    "https://www.redfin.com/city/30749/NY/New-York",
    "https://www.redfin.com/zipcode/20001/rentals/filter/dogs-allowed"
  ],
  "locations": [
    "78701",
    "78702",
    "78703",
    "78704",
    "78705"
  ],
  "sampleUrl": "https://www.redfin.com/zipcode/78704/filter/min-beds=2,air-conditioning",
  "searchLimit": 50,
  "proxySettings": {
    "useApifyProxy": false
  },
  "onlyNew": false
}
```

## Output

```json
{
  "propertyId": {
    "label": "ID",
    "format": "string"
  },
  "mainPhoto": {
    "label": "Photo",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "beds": {
    "label": "Beds",
    "format": "integer"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "sqft": {
    "label": "Sq Ft",
    "format": "integer"
  },
  "propertyType": {
    "label": "Prop. Type",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "requiresAuth": {
    "label": "Auth Req.",
    "format": "boolean"
  },
  "daysOnMarket": {
    "label": "Days on Mkt",
    "format": "integer"
  },
  "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.