# HRS hotel reviews scraper and monitor

**Use case:** 

Scrape current public HRS hotel reviews, guest comments, scores, and rating summaries for a recurring reputation-monitoring workflow.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.hrs.com/en/hotel/391864"
    }
  ],
  "hotelIds": [],
  "maxReviewsPerHotel": 20,
  "alwaysReturnSummary": true
}
```

## Output

```json
{
  "hotelName": {
    "label": "Hotel",
    "format": "string"
  },
  "reviewerName": {
    "label": "Reviewer",
    "format": "string"
  },
  "postedAt": {
    "label": "Posted",
    "format": "string"
  },
  "travelerType": {
    "label": "Traveler type",
    "format": "string"
  },
  "reviewText": {
    "label": "Review",
    "format": "string"
  },
  "overallScore": {
    "label": "Score",
    "format": "number"
  },
  "recommended": {
    "label": "Recommended",
    "format": "boolean"
  },
  "categoryRatings": {
    "label": "Category ratings",
    "format": "object"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "string"
  }
}
```

## About this Actor

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