# Create a small Expedia hotel review archive

**Use case:** 

Save a bounded snapshot of public Expedia hotel reviews with stable review IDs, ratings, text, dates, and scrape timestamps for later comparison.

## Input

```json
{
  "propertyIds": [
    "905202"
  ],
  "maxReviewsPerHotel": 20,
  "pageSize": 20,
  "sortBy": "MOST_RELEVANT",
  "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.