# Expedia Hotel Reviews for AI & RAG (Markdown)

**Use case:** 

Export Expedia guest reviews as LLM-ready markdown for RAG, fine-tuning and sentiment pipelines: self-contained per-review blocks, zero setup.

## Input

```json
{
  "hotelUrls": [
    "https://www.expedia.com/New-York-Hotels-New-York-Marriott-Marquis.h15838.Hotel-Information"
  ],
  "maxReviewsPerHotel": 500,
  "sortBy": "newest",
  "minRating": 1,
  "maxRating": 5,
  "reviewSources": [],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "markdownContent": {
    "label": "Markdown (LLM-ready)",
    "format": "string"
  },
  "overallRating": {
    "label": "Rating /10",
    "format": "integer"
  },
  "hotelName": {
    "label": "Hotel name",
    "format": "string"
  },
  "hotelId": {
    "label": "Hotel ID",
    "format": "integer"
  },
  "source": {
    "label": "Source",
    "format": "string"
  }
}
```

## About this Actor

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