# Las Vegas Hotel Reviews Dataset (Top Strip Hotels)

**Use case:** 

Scrape guest reviews and ratings for the top Las Vegas Strip hotels from Expedia in one run: Bellagio, The Venetian, Caesars, ARIA and more.

## Input

```json
{
  "hotelUrls": [
    "https://www.expedia.com/Las-Vegas-Hotels-Bellagio.h140596.Hotel-Information",
    "https://www.expedia.com/Las-Vegas-Hotels-The-Venetian-Resort.h1443.Hotel-Information",
    "https://www.expedia.com/Las-Vegas-Hotels-Caesars-Palace.h41245.Hotel-Information",
    "https://www.expedia.com/Las-Vegas-Hotels-ARIA-Resort-Casino.h2565776.Hotel-Information",
    "https://www.expedia.com/Las-Vegas-Hotels-The-Cosmopolitan-Of-Las-Vegas.h3818880.Hotel-Information",
    "https://www.expedia.com/Las-Vegas-Hotels-Mandalay-Bay-Resort-And-Casino.h203613.Hotel-Information",
    "https://www.expedia.com/Las-Vegas-Hotels-Luxor-Hotel-And-Casino.h15237.Hotel-Information",
    "https://www.expedia.com/Las-Vegas-Hotels-MGM-Grand-Hotel-Casino.h12628.Hotel-Information",
    "https://www.expedia.com/Las-Vegas-Hotels-Wynn-Las-Vegas.h1184243.Hotel-Information"
  ],
  "maxReviewsPerHotel": 50,
  "sortBy": "newest",
  "minRating": 1,
  "maxRating": 5,
  "reviewSources": [],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  },
  "hotelName": {
    "label": "Hotel name",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "submittedAt": {
    "label": "Submitted at",
    "format": "string"
  },
  "overallRating": {
    "label": "Rating /10",
    "format": "integer"
  },
  "ratingLabel": {
    "label": "Rating label",
    "format": "string"
  },
  "reviewText": {
    "label": "Review text",
    "format": "string"
  },
  "subRatings": {
    "label": "Sub-ratings",
    "format": "array"
  },
  "brandType": {
    "label": "Review source",
    "format": "string"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "reviewerName": {
    "label": "Reviewer name",
    "format": "string"
  },
  "reviewerLocation": {
    "label": "Reviewer location",
    "format": "string"
  },
  "checkInDate": {
    "label": "Check-in date",
    "format": "string"
  },
  "checkOutDate": {
    "label": "Check-out date",
    "format": "string"
  },
  "travelCompanions": {
    "label": "Travelling as",
    "format": "array"
  },
  "travelerCategories": {
    "label": "Traveler categories",
    "format": "array"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "helpfulVotes": {
    "label": "Helpful votes",
    "format": "integer"
  },
  "reviewPhotos": {
    "label": "Review photos",
    "format": "array"
  },
  "ownerResponse": {
    "label": "Owner response",
    "format": "object"
  },
  "hotelUrl": {
    "label": "Hotel URL",
    "format": "string"
  }
}
```

## About this Actor

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