# Agoda Hotel Review Data Extractor

**Use case:** 

Collect 100 structured Agoda hotel reviews, including ratings, guest comments, and reviewer details for targeted market analysis.

## Input

```json
{
  "startUrl": "https://www.agoda.com/ololoyurt-h55804537/hotel/all/bishkek-kg.html",
  "results_wanted": 100,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "hotel_id": {
    "label": "Hotel ID",
    "format": "number"
  },
  "hotel_name": {
    "label": "Hotel",
    "format": "text"
  },
  "review_id": {
    "label": "Review ID",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "rating_text": {
    "label": "Rating Text",
    "format": "text"
  },
  "review_title": {
    "label": "Title",
    "format": "text"
  },
  "review_comment": {
    "label": "Comment",
    "format": "text"
  },
  "review_date": {
    "label": "Date",
    "format": "date"
  },
  "reviewer_name": {
    "label": "Reviewer",
    "format": "text"
  },
  "reviewer_country": {
    "label": "Country",
    "format": "text"
  },
  "reviewer_group": {
    "label": "Group",
    "format": "text"
  },
  "reviewer_room_type": {
    "label": "Room Type",
    "format": "text"
  },
  "helpful_votes": {
    "label": "Helpful",
    "format": "number"
  },
  "source_url": {
    "label": "Source URL",
    "format": "link"
  }
}
```

## About this Actor

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