Tripadvisor Scraper
DeprecatedView all Actors
This Actor is unavailable because the developer has decided to deprecate it. Would you like to try a similar Actor instead?
See alternative ActorsTripadvisor Scraper
eunit/tripadvisor-scraper
Extract hotel, restaurant, and attraction data effortlessly. Quickly scrape pricing, contact details, reviews, and more. Download in Excel, JSON, or CSV. Ideal for market research, competitor analysis, and travel planning.
The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more
1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7 "locationFullName": "Prague",
8 "startUrls": [
9 {
10 "url": "https://www.tripadvisor.com/Hotel_Review-g295424-d21321279-Reviews-Sofitel_Dubai_the_Obelisk-Dubai_Emirate_of_Dubai.html"
11 }
12 ],
13 "maxItems": 10,
14 "maxReviews": 0,
15 "language": "en",
16 "currency": "USD",
17 "proxyConfiguration": {
18 "useApifyProxy": true
19 }
20}
21EOF
22
23# Run the Actor using an HTTP API
24# See the full API reference at https://docs.apify.com/api/v2
25curl "https://api.apify.com/v2/acts/eunit~tripadvisor-scraper/runs?token=$API_TOKEN" \
26 -X POST \
27 -d @input.json \
28 -H 'Content-Type: application/json'
Developer
Maintained by Community
Categories