# Scrape Expedia Hotel Reviews by Date – Review Scraper API

**Use case:** 

Scrape Expedia hotel reviews for specific dates, including ratings, review text, stay dates, and traveler information

## Input

```json
{
  "scrapeType": "HOTEL_REVIEWS",
  "locationSearch": "Paris, France",
  "locationLimit": 5,
  "regionId": "2734",
  "checkIn": "2026-08-15",
  "checkOut": "2026-08-20",
  "adults": 2,
  "childrenAges": [
    5,
    10
  ],
  "maxResults": 50,
  "hotelFilters": {
    "sort": "RECOMMENDED",
    "star_ratings": [
      4,
      5
    ],
    "price_min": 50,
    "price_max": 300,
    "guest_rating_min": 70,
    "amenities": [
      "WIFI",
      "POOL"
    ],
    "property_types": [
      "HOTEL"
    ],
    "meal_plans": [],
    "payment_type": "FREE_CANCELLATION"
  },
  "propertyId": "16786",
  "currency": "USD",
  "page": 0,
  "pageSize": 10,
  "sortBy": "",
  "searchTerm": "",
  "travelerType": "",
  "pickupSearchTerm": "New York, New York, United States of America",
  "pickupDatetime": {
    "day": 15,
    "month": 8,
    "year": 2026,
    "hour": 10,
    "minute": 0
  },
  "dropoffSearchTerm": "New York, New York, United States of America",
  "dropoffDatetime": {
    "day": 20,
    "month": 8,
    "year": 2026,
    "hour": 10,
    "minute": 0
  },
  "transferMode": "RENTAL",
  "carFilters": {
    "sort": "RECOMMENDED",
    "car_types": [
      "midsize",
      "compact"
    ],
    "vendors": [
      "ZE",
      "ZI"
    ],
    "price_range": "75-100",
    "capacity": "TWO_TO_FIVE",
    "specs": [
      "AUTO_TRANSMISSION"
    ],
    "radius_km": 10
  },
  "carOfferToken": "AQh3XDzUb4Yaw4cMGaeYnjj7avjCnI7in9MF41jMKsvokMLK..."
}
```

## Output

```json
{
  "scrape_type": {
    "label": "Type",
    "format": "text"
  },
  "property_id": {
    "label": "Property ID",
    "format": "text"
  },
  "review_id": {
    "label": "Review ID",
    "format": "text"
  },
  "reviewer": {
    "label": "Reviewer",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "rating_text": {
    "label": "Rating text",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "text": {
    "label": "Review",
    "format": "text"
  },
  "traveler_type": {
    "label": "Traveler type",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "trip_summary": {
    "label": "Stay",
    "format": "text"
  },
  "positive": {
    "label": "Pros",
    "format": "text"
  },
  "negative": {
    "label": "Cons",
    "format": "text"
  },
  "management_response": {
    "label": "Hotel response",
    "format": "text"
  },
  "photos": {
    "label": "Photos",
    "format": "array"
  },
  "is_metadata": {
    "label": "Metadata",
    "format": "boolean"
  },
  "overall_rating": {
    "label": "Overall rating",
    "format": "text"
  },
  "verified_reviews": {
    "label": "Verified reviews",
    "format": "text"
  },
  "score_categories": {
    "label": "Score categories",
    "format": "array"
  },
  "page": {
    "label": "Page",
    "format": "number"
  },
  "page_size": {
    "label": "Page size",
    "format": "number"
  },
  "pushed": {
    "label": "Pushed",
    "format": "number"
  },
  "filters_applied": {
    "label": "Filters applied",
    "format": "object"
  },
  "filter_options": {
    "label": "Filter options",
    "format": "object"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/fingolfin/expedia-scraper.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
