# Agoda Reviews to JSON

**Use case:** 

Get Agoda hotel reviews as clean structured JSON via API or MCP: rating, text, dates, country and owner responses.

## Input

```json
{
  "hotelUrls": [
    "https://www.agoda.com/bayswater-inn-hotel/hotel/london-gb.html",
    "https://www.agoda.com/majerik-hotel/hotel/heviz-hu.html"
  ],
  "maxReviews": 100,
  "sortBy": "newest",
  "minRating": 1,
  "maxRating": 10,
  "reviewSources": [
    "agoda"
  ],
  "languages": [],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "hotelName": {
    "label": "Hotel name",
    "format": "string"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  },
  "reviewerName": {
    "label": "Reviewer name",
    "format": "string"
  },
  "score": {
    "label": "Score /10",
    "format": "number"
  },
  "ratingText": {
    "label": "Rating label",
    "format": "string"
  },
  "reviewDate": {
    "label": "Review date",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "text": {
    "label": "Review text",
    "format": "string"
  },
  "positives": {
    "label": "Liked",
    "format": "string"
  },
  "negatives": {
    "label": "Disliked",
    "format": "string"
  },
  "ownerResponse": {
    "label": "Owner response",
    "format": "object"
  },
  "roomType": {
    "label": "Room type",
    "format": "string"
  },
  "checkInDate": {
    "label": "Check-in date",
    "format": "string"
  },
  "checkOutDate": {
    "label": "Check-out date",
    "format": "string"
  },
  "lengthOfStay": {
    "label": "Nights",
    "format": "integer"
  },
  "reviewerCountry": {
    "label": "Reviewer country",
    "format": "string"
  },
  "travelerType": {
    "label": "Traveler type",
    "format": "string"
  },
  "reviewPhotos": {
    "label": "Review photos",
    "format": "array"
  },
  "source": {
    "label": "Review source",
    "format": "string"
  }
}
```

## About this Actor

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