# Booking.com Reviews Scraper (`codingfrontend/booking-com-reviews-scraper`) Actor

Scrape all guest reviews from Booking.com hotels: reviewer name, country, score, date, stay type, positive/negative text, and host responses. Supports full pagination.

- **URL**: https://apify.com/codingfrontend/booking-com-reviews-scraper.md
- **Developed by:** [Coding Frontned](https://apify.com/codingfrontend) (community)
- **Categories:** Travel, Automation, Developer tools
- **Stats:** 4 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $4.99 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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 all guest reviews from Booking.com hotels — reviewer name, country, score, date, stay type, positive/negative text, host responses — with full pagination across hundreds of pages.

### Features

- **Full review pagination** — scrapes all reviews (or up to your limit) across multiple pages
- **Rich review data** — reviewer name, country, overall score, review title, positive/negative text, stay date, stay type, room type, host response
- **Sort options** — newest, oldest, highest score, lowest score, most relevant
- **Language filter** — optionally filter reviews by reviewer language
- **Apify proxy support** — residential proxies for reliable access
- **Parallel processing** — scrapes multiple hotels concurrently

### Input

| Field | Type | Description | Default |
|---|---|---|---|
| `hotelUrls` | array | Booking.com hotel page URLs | required |
| `maxReviews` | integer | Max reviews per hotel (0 = all) | 50 |
| `sortBy` | string | Sort order: `f_recent_desc`, `f_recent_asc`, `f_score_asc`, `f_score_desc`, `f_relevance_desc` | `f_recent_desc` |
| `language` | string | Language code filter (e.g. `en`, `fr`). Empty = all languages | (all) |
| `proxyConfiguration` | object | Apify proxy settings | RESIDENTIAL |

#### Example Input

```json
{
  "hotelUrls": [
    "https://www.booking.com/hotel/fr/cosy-studio-2p-bastille.en-gb.html",
    "https://www.booking.com/hotel/fr/bradfordelysees.en-gb.html"
  ],
  "maxReviews": 100,
  "sortBy": "f_recent_desc",
  "language": "en",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"]
  }
}
```

### Output

One record per review:

```json
{
  "hotelName": "Bradford Elysées - Astotel",
  "hotelUrl": "https://www.booking.com/hotel/fr/bradfordelysees.en-gb.html",
  "reviewerName": "John D.",
  "reviewerCountry": "United Kingdom",
  "overallScore": 9.0,
  "title": "Great location, friendly staff",
  "positiveText": "Excellent location near Champs-Élysées. Staff were very helpful.",
  "negativeText": "Room was a bit small but clean.",
  "date": "May 2025",
  "stayDate": "April 2025",
  "stayType": "Couple",
  "roomType": "Superior Double Room",
  "nightsText": "Stayed 3 nights",
  "hostResponse": null,
  "hasHostResponse": false,
  "scrapedAt": "2026-05-11T08:00:00.000Z"
}
```

### Contact

For questions or custom scraping needs, reach out at **lakshmanan.w3dev@gmail.com**.

# Actor input Schema

## `hotelUrls` (type: `array`):

Booking.com hotel page URLs to scrape reviews from (e.g. https://www.booking.com/hotel/fr/cosy-studio-2p-bastille.en-gb.html).

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

Maximum number of reviews to scrape per hotel. Set 0 for all reviews.

## `sortBy` (type: `string`):

How to sort the reviews.

## `language` (type: `string`):

Filter reviews by language code (e.g. en, fr, de). Leave empty for all languages.

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

Proxy settings. Residential proxies are recommended for Booking.com.

## Actor input object example

```json
{
  "hotelUrls": [
    "https://www.booking.com/hotel/fr/cosy-studio-2p-bastille.en-gb.html"
  ],
  "maxReviews": 50,
  "sortBy": "f_recent_desc",
  "language": "",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# 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 = {
    "hotelUrls": [
        "https://www.booking.com/hotel/fr/cosy-studio-2p-bastille.en-gb.html"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("codingfrontend/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 = {
    "hotelUrls": ["https://www.booking.com/hotel/fr/cosy-studio-2p-bastille.en-gb.html"],
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("codingfrontend/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 '{
  "hotelUrls": [
    "https://www.booking.com/hotel/fr/cosy-studio-2p-bastille.en-gb.html"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call codingfrontend/booking-com-reviews-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/cLROQvEhz9RgZN0DM/builds/fa5ctmOdymCX6On0z/openapi.json
