# 获取酒店评价数据，逐条含评分与酒店回复

**Use case:** 

按酒店链接批量获取住客评价，每条评价单独成行，包含酒店名称、评分、评价人、入住晚数、评价日期与酒店方回复，可直接导出表格。

## Input

```json
{
  "mode": "reviews",
  "locations": [
    "Singapore"
  ],
  "checkIn": "2026-09-15",
  "checkOut": "2026-09-18",
  "adults": 2,
  "hotelUrls": [
    "https://www.agoda.com/apa-hotel-resort-osaka-namba-ekimae-tower/hotel/osaka-jp.html"
  ],
  "maxResultsPerInput": 5,
  "sortReviewsBy": "Most recent"
}
```

## Output

```json
{
  "propertyName": {
    "label": "Property name",
    "format": "string"
  },
  "rating": {
    "label": "Review rating",
    "format": "number"
  },
  "reviewPositive": {
    "label": "What the guest liked",
    "format": "string"
  },
  "reviewNegative": {
    "label": "What the guest disliked",
    "format": "string"
  },
  "authorName": {
    "label": "Reviewer",
    "format": "string"
  },
  "nightsStayed": {
    "label": "Nights stayed",
    "format": "integer"
  },
  "reviewDate": {
    "label": "Review date",
    "format": "string"
  },
  "ownerReply": {
    "label": "Owner reply",
    "format": "string"
  }
}
```

## About this Actor

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