Booking.com Reviews Scraper
Pricing
from $2.00 / 1,000 review scrapeds
Booking.com Reviews Scraper
Extract Booking.com guest reviews at scale โ 24 structured fields per review (positive/negative text, score, traveler type, room, reviewer profile.
Booking.com Reviews Scraper
Pricing
from $2.00 / 1,000 review scrapeds
Extract Booking.com guest reviews at scale โ 24 structured fields per review (positive/negative text, score, traveler type, room, reviewer profile.
You can access the Booking.com Reviews Scraper programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youโll need an Apify account and your API token, found in Integrations settings in Apify Console.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "startUrls": [12 {13 "url": "https://www.booking.com/hotel/cz/jeromehouse.en-gb.html"14 }15 ],16 "searchQuery": "",17 "checkIn": "",18 "checkOut": "",19 "maxReviewsPerHotel": 100,20 "maxHotelsFromSearch": 5,21 "sortReviewsBy": "f_relevance",22 "filterByScore": "f_all_reviews",23 "filterByTravelerType": "",24 "filterByLanguage": "",25 "cutoffDate": "",26 "proxyConfiguration": {27 "useApifyProxy": true28 }29};30
31// Run the Actor and wait for it to finish32const run = await client.actor("khadinakbar/booking-reviews-scraper").call(input);33
34// Fetch and print Actor results from the run's dataset (if any)35console.log('Results from dataset');36console.log(`๐พ Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);37const { items } = await client.dataset(run.defaultDatasetId).listItems();38items.forEach((item) => {39 console.dir(item);40});41
42// ๐ Want to learn more ๐? Go to โ https://docs.apify.com/api/client/js/docsThe Apify API client for JavaScript is the official library that allows you to use Booking.com Reviews Scraper API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-clientOther API clients include: