# Airbnb New Listings Monitor

**Use case:** 

Monitor new Airbnb properties — incremental runs return only fresh or changed listings, with price, photos and location. Structured JSON.

## Input

```json
{
  "mode": "listings",
  "searchLocations": [
    "Miami, FL"
  ],
  "startUrls": [],
  "maxResults": 10,
  "roomTypes": [],
  "includeDetails": false,
  "includeReviews": false,
  "reviewsMaxPerListing": 10,
  "reviewSort": "best",
  "physicalDedupeKey": false,
  "excludeEmptyFields": false,
  "compact": false,
  "incrementalMode": true,
  "stateKey": "miami-fl-stays",
  "emitUnchanged": false,
  "emitExpired": false,
  "skipReposts": false,
  "notificationLimit": 5,
  "notifyOnlyChanges": false
}
```

## Output

```json
{
  "name": {
    "label": "Name"
  },
  "roomType": {
    "label": "Room type"
  },
  "price": {
    "label": "Price"
  },
  "avgRating": {
    "label": "Avg rating"
  },
  "reviewCount": {
    "label": "Review count"
  },
  "coordinate": {
    "label": "Coordinate"
  },
  "listingUrl": {
    "label": "Listing url"
  }
}
```

## About this Actor

This example demonstrates how to use [Airbnb Scraper — Listings, Prices, Reviews & Host Data](https://apify.com/blackfalcondata/airbnb-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/blackfalcondata/airbnb-scraper) to learn more, explore other use cases, and run it yourself.