All Reviews avatar
All Reviews
Deprecated
View all Actors
This Actor is deprecated

This Actor is unavailable because the developer has decided to deprecate it. Would you like to try a similar Actor instead?

See alternative Actors
All Reviews

All Reviews

canadesk/all-reviews

Collect the latest reviews from Booking, Tripadvisor, Facebook, Yelp, Yellow Pages, Hotels, Expedia, Airbnb, OpenTable, Etsy, G2, Capterra and Product Hunt in one go!

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  "links": [
8    "https://www.booking.com/hotel/us/park-plaza-lodge.html",
9    "https://www.tripadvisor.com/Hotel_Review-g32655-d630945-Reviews-Park_Plaza_Lodge_Hotel-Los_Angeles_California.html",
10    "https://www.facebook.com/p/Park-Plaza-Lodge-100063738692675"
11  ],
12  "proxy": {
13    "useApifyProxy": true,
14    "apifyProxyGroups": [
15      "RESIDENTIAL"
16    ]
17  }
18}
19EOF
20
21# Run the Actor using an HTTP API
22# See the full API reference at https://docs.apify.com/api/v2
23curl "https://api.apify.com/v2/acts/canadesk~all-reviews/runs?token=$API_TOKEN" \
24  -X POST \
25  -d @input.json \
26  -H 'Content-Type: application/json'
Developer
Maintained by Community