# Airbnb Listing ID Reviews Extractor

**Use case:** 

Extract Airbnb reviews by listing ID with ratings, dates, reviewer names, host responses, review language, and translated text.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.airbnb.com/rooms/38618607"
    }
  ],
  "listingIds": [
    "12937",
    "38618607"
  ],
  "maxReviewsPerListing": 20,
  "sortBy": "RATING_ASC",
  "filterByTopic": "CLEANLINESS",
  "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.