# Extract guest reviews for an HRS hotel ID

**Use case:** 

Extract visible guest comments, traveler types, recommendation signals, and category scores for one known HRS hotel ID.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.hrs.com/en/hotel/391864"
    }
  ],
  "hotelIds": [
    "391864"
  ],
  "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.