# Monitor new Redfin listings in any ZIP code

**Use case:** 

Get only newly added listings on every run. Perfect for schedules and alerts. First run does a full scan, next runs return just the new homes.

## Input

```json
{
  "urls": [
    "https://www.redfin.com/zipcode/78704"
  ],
  "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": 0,
  "proxySettings": {
    "useApifyProxy": false
  },
  "onlyNew": true
}
```

## 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.