# Hawaii Hotel Reviews Dataset (Waikiki Resorts)

**Use case:** 

Scrape guest reviews for top Honolulu and Waikiki resorts from Hotels.com: Hilton Hawaiian Village, Royal Hawaiian, Moana Surfrider and more.

## Input

```json
{
  "hotelUrls": [
    "https://www.hotels.com/ho112911/hilton-hawaiian-village-waikiki-beach-resort-honolulu-united-states-of-america/",
    "https://www.hotels.com/ho141177/the-royal-hawaiian-a-luxury-collection-resort-waikiki-honolulu-united-states-of-america/",
    "https://www.hotels.com/ho105793/sheraton-waikiki-honolulu-united-states-of-america/",
    "https://www.hotels.com/ho143000/moana-surfrider-a-westin-resort-spa-waikiki-beach-honolulu-united-states-of-america/",
    "https://www.hotels.com/ho111768/outrigger-waikiki-beach-resort-honolulu-united-states-of-america/",
    "https://www.hotels.com/ho106020/hyatt-regency-waikiki-beach-resort-spa-honolulu-united-states-of-america/",
    "https://www.hotels.com/ho134840/alohilani-resort-waikiki-beach-honolulu-united-states-of-america/"
  ],
  "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 [Hotels.com Reviews Scraper 🏨 Ratings, Text & Sentiment](https://apify.com/factden/hotels-com-reviews-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/factden/hotels-com-reviews-scraper) to learn more, explore other use cases, and run it yourself.