# Expedia hotel reviews scraper example

**Use case:** 

Run an Expedia reviews scraper for a public hotel URL and export ratings, review text, traveler details, and replies.

## Input

```json
{
  "listingUrls": [
    "https://www.expedia.com/Bangkok-Hotels-Admiral-Suites.h911663.Hotel-Information"
  ],
  "propertyIds": [],
  "maxReviews": 10,
  "sort": "MOST_RECENT",
  "travelerType": "all",
  "keyword": "",
  "locale": "en_US",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "propertyName": {
    "label": "Property",
    "format": "string"
  },
  "propertyUrl": {
    "label": "Expedia URL",
    "format": "string"
  },
  "aggregateRating": {
    "label": "Hotel rating",
    "format": "number"
  },
  "totalReviews": {
    "label": "Total reviews",
    "format": "number"
  },
  "rating": {
    "label": "Review rating",
    "format": "number"
  },
  "ratingLabel": {
    "label": "Rating label",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "text": {
    "label": "Review",
    "format": "string"
  },
  "reviewDate": {
    "label": "Review date",
    "format": "string"
  },
  "reviewerName": {
    "label": "Reviewer",
    "format": "string"
  },
  "travelerType": {
    "label": "Traveler type",
    "format": "string"
  },
  "verifiedStay": {
    "label": "Verified",
    "format": "boolean"
  },
  "liked": {
    "label": "Liked",
    "format": "string"
  },
  "disliked": {
    "label": "Disliked",
    "format": "string"
  },
  "managementReplyText": {
    "label": "Management reply",
    "format": "string"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  },
  "propertyId": {
    "label": "Property ID",
    "format": "string"
  },
  "locale": {
    "label": "Locale",
    "format": "string"
  },
  "helpfulVotes": {
    "label": "Helpful votes",
    "format": "number"
  },
  "stayDetails": {
    "label": "Stay details",
    "format": "string"
  },
  "photoUrls": {
    "label": "Photos",
    "format": "array"
  },
  "cleanlinessRating": {
    "label": "Cleanliness",
    "format": "number"
  },
  "staffServiceRating": {
    "label": "Staff & service",
    "format": "number"
  },
  "amenitiesRating": {
    "label": "Amenities",
    "format": "number"
  },
  "propertyConditionRating": {
    "label": "Property condition",
    "format": "number"
  },
  "managementReplyTitle": {
    "label": "Reply title",
    "format": "string"
  },
  "propertyType": {
    "label": "Property type",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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