# Airbnb Review Listing Monitor

**Use case:** 

Monitor Airbnb listing reviews and extract ratings, reviewer names, dates, review text, host responses, language, and sentiment fields.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.airbnb.com/rooms/38618607"
    }
  ],
  "maxReviewsPerListing": 25,
  "sortBy": "MOST_RECENT",
  "locale": "en-US",
  "enableAIAnalysis": false
}
```

## Output

```json
{
  "listingId": {
    "label": "Listing ID"
  },
  "reviewId": {
    "label": "Review ID"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewerName": {
    "label": "Reviewer"
  },
  "createdAt": {
    "label": "Date"
  },
  "text": {
    "label": "Review Text"
  },
  "sentiment": {
    "label": "Sentiment"
  },
  "translatedText": {
    "label": "Translation"
  },
  "hostResponse": {
    "label": "Host Response"
  },
  "language": {
    "label": "Language"
  }
}
```

## About this Actor

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