# Monitor competitor Airbnb listing reviews

**Use case:** 

Track rival Airbnb listings and get only new reviews each run via Slack. Stars, excerpt and listing link delivered automatically.

## Input

```json
{
  "listingUrls": [
    "https://www.airbnb.com/rooms/20669368",
    "https://www.airbnb.com/rooms/1206441548197247311"
  ],
  "maxReviews": 50,
  "sortBy": "newest",
  "minRating": 0,
  "maxRating": 0,
  "stripPersonalData": true,
  "includeRaw": false,
  "monitorMode": true,
  "alertOnNewReview": true,
  "slackWebhookUrl": "https://hooks.slack.com/services/XXX/YYY/ZZZ",
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 4,
  "diagnose": false
}
```

## Output

```json
{
  "rating": {
    "label": "Stars",
    "format": "integer"
  },
  "text": {
    "label": "Review",
    "format": "string"
  },
  "created_at": {
    "label": "Date",
    "format": "string"
  },
  "language": {
    "label": "Lang",
    "format": "string"
  },
  "reviewer_location": {
    "label": "Reviewer",
    "format": "string"
  },
  "host_response": {
    "label": "Host response",
    "format": "string"
  },
  "host_responded_date": {
    "label": "Responded",
    "format": "string"
  },
  "listing_title": {
    "label": "Listing",
    "format": "string"
  },
  "listing_url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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