# Analyze top-rated Expedia hotel reviews

**Use case:** 

Export a hotel's highest-rated public Expedia reviews to study the amenities and guest experiences reviewers praise most often.

## Input

```json
{
  "propertyIds": [
    "905202"
  ],
  "maxReviewsPerHotel": 20,
  "pageSize": 20,
  "sortBy": "HIGHEST_TO_LOWEST_RATING",
  "includeRatingsOnly": false,
  "locale": "en_US",
  "maxRuntimeSecs": 120
}
```

## Output

```json
{
  "hotelId": {
    "label": "Hotel ID",
    "format": "string"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "text": {
    "label": "Review",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "submissionDate": {
    "label": "Submitted",
    "format": "string"
  },
  "travelerType": {
    "label": "Traveler type",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "string"
  }
}
```

## About this Actor

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