# 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:** 1 total users, 0 monthly users, 0.0% 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 a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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

# 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. Booking.com exposes its review list as a client-side panel rather than a full paginated API, so most runs return up to ~10 reviews regardless of this value.

## `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. Apify Proxy required to reliably bypass Booking.com's bot protection.

## Actor input object example

```json
{
  "hotelUrl": "https://www.booking.com/hotel/tr/istanbul-bosphorus-hotel.html",
  "maxReviews": 100,
  "filterTripType": [
    "Couple",
    "Solo traveler"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# 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 = {};

// 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 = {}

# 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 '{}' |
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

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Booking.com Reviews Scraper | Hotel Reviews Extractor",
        "description": "Extract hotel and property reviews from Booking.com. Get ratings, reviewer details, stay dates, trip types, and review text.",
        "version": "1.1",
        "x-build-id": "ZOgEEaBgf1I763khB"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/muzafferkadir~booking-com-reviews-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-muzafferkadir-booking-com-reviews-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/muzafferkadir~booking-com-reviews-scraper/runs": {
            "post": {
                "operationId": "runs-sync-muzafferkadir-booking-com-reviews-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/muzafferkadir~booking-com-reviews-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-muzafferkadir-booking-com-reviews-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "hotelUrl"
                ],
                "properties": {
                    "hotelUrl": {
                        "title": "Hotel URL",
                        "type": "string",
                        "description": "Full Booking.com hotel URL (e.g., https://www.booking.com/hotel/tr/example.html)"
                    },
                    "maxReviews": {
                        "title": "Max Reviews",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Upper bound on reviews to collect. Booking.com exposes its review list as a client-side panel rather than a full paginated API, so most runs return up to ~10 reviews regardless of this value.",
                        "default": 100
                    },
                    "filterTripType": {
                        "title": "Trip Type Filter",
                        "type": "array",
                        "description": "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.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "minRating": {
                        "title": "Minimum Rating",
                        "minimum": 1,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Only include reviews with rating >= this value (1–10)"
                    },
                    "maxRating": {
                        "title": "Maximum Rating",
                        "minimum": 1,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Only include reviews with rating <= this value (1–10)"
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings for the scraper. Apify Proxy required to reliably bypass Booking.com's bot protection.",
                        "default": {
                            "useApifyProxy": true
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
