# Booking.com Reviews Scraper | Hotel Reviews Extractor (`muzafferkadir/booking-com-reviews-scraper`) Actor

Extract hotel and property reviews from Booking.com. Get ratings, reviewer details, stay dates, trip types, and review text.

- **URL**: https://apify.com/muzafferkadir/booking-com-reviews-scraper.md
- **Developed by:** [Muzaffer Kadir YILMAZ](https://apify.com/muzafferkadir) (community)
- **Categories:** Travel, E-commerce, Lead generation
- **Stats:** 2 total users, 1 monthly users, 89.5% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $10.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

- **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 usage examples, see the [API](#api) section below.

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).

# README

## Booking.com Reviews Scraper

Extract real guest reviews from any Booking.com hotel page — ratings, review text, reviewer name and country, room type, stay date, and trip type.

Use this actor to:

- **Monitor your property's reputation** — track what guests are saying about a hotel
- **Competitive analysis** — see what guests praise or complain about at competing properties
- **Market research** — understand traveler sentiment for a destination or hotel category
- **Lead generation** — find hotels with recurring complaints you could help solve
- **AI training data** — build labeled review datasets from real guest feedback

### What data you get

Each review includes:

| Field | Description |
|---|---|
| `reviewerName` | Guest's display name |
| `reviewerCountry` | Guest's country (when shown) |
| `rating` | Score out of 10 |
| `title` | Review headline |
| `positiveText` | What the guest liked |
| `negativeText` | What the guest didn't like |
| `roomType` | Room the guest stayed in |
| `stayDate` | When the stay took place |
| `tripType` | e.g. "Couple", "Solo traveler", "Family with young children" |
| `reviewDate` | Date the review was published |
| `hotelUrl` | Source hotel URL |
| `scrapedAt` | When the data was collected |

### Input

| Field | Type | Description |
|---|---|---|
| `hotelUrl` | `string` | Full Booking.com hotel URL, e.g. `https://www.booking.com/hotel/tr/example.html` |
| `maxReviews` | `number` | Maximum number of reviews to collect (default: 100). A single run typically returns the hotel's ~10 most recent reviews. |
| `minRating` | `1-10` | Only return reviews with a rating at or above this value |
| `maxRating` | `1-10` | Only return reviews with a rating at or below this value |
| `filterTripType` | `string[]` | Only return reviews matching one of these trip types, e.g. `["Couple", "Solo traveler"]` |
| `proxyConfiguration` | `object` | Proxy settings (Apify Proxy recommended) |

#### Example input

```json
{
  "hotelUrl": "https://www.booking.com/hotel/tr/the-pera-hill.html",
  "maxReviews": 10,
  "minRating": 7
}
```

### Output sample

```json
{
  "reviewerName": "Reem",
  "reviewerCountry": "Egypt",
  "reviewDate": "2026-06-20T00:00:00.000Z",
  "rating": 9,
  "title": "Pleasant stay, very good location",
  "positiveText": "The staff is very friendly the location is perfect",
  "negativeText": "Nothing",
  "roomType": "Standard Twin Room",
  "stayDate": "June 2026",
  "tripType": "Couple",
  "hotelUrl": "https://www.booking.com/hotel/tr/the-pera-hill.html",
  "scrapedAt": "2026-07-12T10:17:34.772Z"
}
```

### Notes

- Each run returns a hotel's most recent reviews (typically up to ~10) rather than its full review history.
- `reviewerCountry` is left blank for guests whose review doesn't display a country.
- Apify Proxy is strongly recommended — without it, requests are much more likely to be blocked.

### License

MIT

### Disclaimer

This is an **unofficial** Actor. It is not affiliated with, endorsed by, or sponsored by Booking.com. All product names, logos, and trademarks are the property of their respective owners and are used here for identification purposes only.

The Actor collects only publicly available information. It does not log in, create accounts, bypass paywalls, or access anything that is not visible to an ordinary visitor.

Output may include information relating to identifiable people. You are the data controller for anything you collect with this Actor and are responsible for having a lawful basis to process it under applicable data-protection law (such as GDPR or KVKK), and for complying with the source website's terms.

# Actor input Schema

## `hotelUrl` (type: `string`):

Full Booking.com hotel URL (e.g., https://www.booking.com/hotel/tr/example.html)

## `maxReviews` (type: `integer`):

Upper bound on reviews to collect. The scraper paginates through the hotel's full review list, so set this to how many you want (capped by how many the hotel actually has).

## `filterTripType` (type: `array`):

Only include reviews matching one of these trip types, matched case-insensitively against Booking.com's own labels (e.g. "Couple", "Solo traveler", "Family with young children", "Group", "Business"). Leave empty to include all.

## `minRating` (type: `integer`):

Only include reviews with rating >= this value (1–10)

## `maxRating` (type: `integer`):

Only include reviews with rating <= this value (1–10)

## `proxyConfiguration` (type: `object`):

Proxy settings for the scraper. Booking.com serves datacenter IPs a stripped-down page where the full review list never loads, so residential proxy is required to reliably get reviews.

## Actor input object example

```json
{
  "hotelUrl": "https://www.booking.com/hotel/gb/the-ritz-london.html",
  "maxReviews": 10,
  "filterTripType": [
    "Couple",
    "Solo traveler"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# Actor output Schema

## `reviews` (type: `string`):

All scraped Booking.com hotel reviews.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "hotelUrl": "https://www.booking.com/hotel/gb/the-ritz-london.html",
    "maxReviews": 10
};

// Run the Actor and wait for it to finish
const run = await client.actor("muzafferkadir/booking-com-reviews-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "hotelUrl": "https://www.booking.com/hotel/gb/the-ritz-london.html",
    "maxReviews": 10,
}

# Run the Actor and wait for it to finish
run = client.actor("muzafferkadir/booking-com-reviews-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "hotelUrl": "https://www.booking.com/hotel/gb/the-ritz-london.html",
  "maxReviews": 10
}' |
apify call muzafferkadir/booking-com-reviews-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=muzafferkadir/booking-com-reviews-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/q6bLm3yNPmeWtSVAz/builds/81OpbFHrGVTbUdNZq/openapi.json
