# Export Agoda guest reviews to CSV or Excel

**Use case:** 

Get Agoda guest reviews out as a spreadsheet. One row per review with propertyName, rating, reviewPositive, authorName, nightsStayed and reviewDate.

## Input

```json
{
  "mode": "reviews",
  "locations": [
    "Singapore"
  ],
  "checkIn": "2026-09-15",
  "checkOut": "2026-09-18",
  "adults": 2,
  "hotelUrls": [
    "https://www.agoda.com/v-hotel-lavender/hotel/singapore-sg.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.