Tripadvisor Reviews Scraper

  • maxcopell/tripadvisor-reviews
  • Modified
  • Users 376
  • Runs 5.5k
  • Created by Author's avatarMaximillian Copelli

Get and download reviews for chosen places on Tripadvisor. Extract the review text, URL, rating, date of travel, published date, basic reviewer info, owner's response, helpful votes, images, review language, place details. Download reviews in XML, JSON, CSV.

Pay $2.00 for 1,000 reviews

Tripadvisor Reviews Scraper

Pay $2.00 for 1,000 reviews

To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running Actors via the API in Apify Docs.

# Set API token
API_TOKEN=<YOUR_API_TOKEN>

# Prepare Actor input
cat > input.json <<'EOF'
{
  "startUrls": [
    {
      "url": "https://www.tripadvisor.com/Hotel_Review-g60763-d208453-Reviews-Hilton_New_York_Times_Square-New_York_City_New_York.html"
    }
  ],
  "maxReviews": 50,
  "language": "en"
}
EOF

# Run the Actor
curl "https://api.apify.com/v2/acts/maxcopell~tripadvisor-reviews/runs?token=$API_TOKEN" \
  -X POST \
  -d @input.json \
  -H 'Content-Type: application/json'