# Scrape Agoda Hotel Reviews and Guest Ratings

**Use case:** 

Extract Agoda hotel reviews, ratings, guest comments, traveler details, room context, and management responses into structured data.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.agoda.com/holiday-inn-bangkok-sukhumvit/reviews/bangkok-th.html"
    }
  ],
  "hotelIds": [],
  "maxReviewsPerHotel": 20,
  "locale": "en-us",
  "includePartnerReviews": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "hotelName": {
    "label": "Hotel name",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingLabel": {
    "label": "Rating label",
    "format": "string"
  },
  "title": {
    "label": "Review title",
    "format": "string"
  },
  "text": {
    "label": "Review text",
    "format": "string"
  },
  "positive": {
    "label": "Positive feedback",
    "format": "string"
  },
  "negative": {
    "label": "Negative feedback",
    "format": "string"
  },
  "reviewDate": {
    "label": "Review date",
    "format": "string"
  },
  "reviewerCountry": {
    "label": "Reviewer country",
    "format": "string"
  },
  "travelerGroup": {
    "label": "Traveler group",
    "format": "string"
  },
  "roomType": {
    "label": "Room type",
    "format": "string"
  },
  "stayLength": {
    "label": "Stay length",
    "format": "integer"
  },
  "managementResponse": {
    "label": "Management response",
    "format": "string"
  },
  "providerName": {
    "label": "Provider",
    "format": "string"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  },
  "hotelId": {
    "label": "Hotel ID",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "string"
  }
}
```

## About this Actor

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