# Expedia Hotel Review Data Extractor

**Use case:** 

Collect detailed hotel reviews, ratings, and guest feedback from Expedia. Access a structured dataset for in-depth market analysis and sentiment tracking.

## Input

```json
{
  "startUrl": "https://www.expedia.com/London-Hotels-The-Connaught.h21364.Hotel-Information?chkin=2026-06-20&chkout=2026-06-21&x_pwa=1&rfrr=HSR&pwa_ts=1780748659455&referrerUrl=aHR0cHM6Ly93d3cuZXhwZWRpYS5jb20vSG90ZWwtU2VhcmNo&useRewards=false&rm1=a2&regionId=2114&destination=London%2C+England%2C+United+Kingdom&destType=MARKET&neighborhoodId=6054503&selected=4922121&latLong=51.50746%2C-0.127673&sort=RECOMMENDED&top_dp=2241&top_cur=USD&userIntent=&selectedRoomType=212705105&selectedRatePlan=403062589&categorySearch=any_option&searchId=8d2203cc-5f52-4028-869a-e0b8e91a39e5",
  "results_wanted": 100,
  "max_pages": 20,
  "review_sort": "none"
}
```

## Output

```json
{
  "hotel_name": {
    "label": "Hotel",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "review_text": {
    "label": "Review",
    "format": "text"
  },
  "published_date": {
    "label": "Published",
    "format": "text"
  },
  "traveler_type": {
    "label": "Traveler Type",
    "format": "text"
  },
  "traveler_name": {
    "label": "Traveler",
    "format": "text"
  },
  "property_url": {
    "label": "Property URL",
    "format": "link"
  }
}
```

## About this Actor

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