# Scrape Expedia reviews from a hotel URL

**Use case:** 

Paste a public Expedia Hotel-Information URL and export its newest guest reviews with ratings, dates, review text, and source links.

## Input

```json
{
  "propertyIds": [
    "905202"
  ],
  "startUrls": [
    {
      "url": "https://www.expedia.com/Prague-Hotels-Golden-Well-Hotel.h905202.Hotel-Information"
    }
  ],
  "maxReviewsPerHotel": 15,
  "pageSize": 15,
  "sortBy": "NEWEST_TO_OLDEST",
  "includeRatingsOnly": true,
  "locale": "en_US",
  "maxRuntimeSecs": 120
}
```

## Output

```json
{
  "hotelId": {
    "label": "Hotel ID",
    "format": "string"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "text": {
    "label": "Review",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "submissionDate": {
    "label": "Submitted",
    "format": "string"
  },
  "travelerType": {
    "label": "Traveler type",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "string"
  }
}
```

## About this Actor

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