# Compare Airbnb reviews for two listings

**Use case:** 

Compare public guest reviews from two Airbnb room URLs and export review text, dates, reviewer metadata, ratings, and listing context.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.airbnb.com/rooms/20669368"
    },
    {
      "url": "https://www.airbnb.com/rooms/50633275"
    }
  ],
  "maxReviewsPerListing": 5,
  "sort": "default",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "listingUrl": {
    "label": "Listing URL",
    "format": "link"
  },
  "listingId": {
    "label": "Listing ID"
  },
  "listingTitle": {
    "label": "Listing title"
  },
  "overallRating": {
    "label": "Overall rating"
  },
  "reviewCount": {
    "label": "Review count"
  },
  "reviewId": {
    "label": "Review ID"
  },
  "reviewerName": {
    "label": "Reviewer"
  },
  "reviewerProfileUrl": {
    "label": "Reviewer profile",
    "format": "link"
  },
  "reviewerLocation": {
    "label": "Reviewer location"
  },
  "reviewDate": {
    "label": "Review date"
  },
  "rating": {
    "label": "Review rating"
  },
  "language": {
    "label": "Language"
  },
  "text": {
    "label": "Review text"
  },
  "translatedText": {
    "label": "Translated text"
  },
  "responseText": {
    "label": "Host response"
  },
  "responseDate": {
    "label": "Response date"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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