Trustradius Insights Scraper

  • epctex/trustradius-scraper
  • Modified
  • Users 37
  • Runs 2.6k
  • Created by Author's avatarepctex

Dive into the Trustradius database with our specialized tool. Extract detailed product, vendor, and review data. Access authentic client feedback, in-depth vendor profiles, and portfolio insights. Navigate with custom search terms, ensuring precise and invaluable insights for your analytical needs.

Free trial for 3 days

Then $20.00/month

No credit card required now

Trustradius Insights Scraper

Free trial for 3 days

Then $20.00/month

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.

from apify_client import ApifyClient

# Initialize the ApifyClient with your API token
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "search": "food",
    "startUrls": [
        "https://www.trustradius.com/vendors/trustradius",
        "https://www.trustradius.com/products/canva",
        "https://www.trustradius.com/users/61ff850b1928ba0031703629",
        "https://www.trustradius.com/users/5c24577c4452bb002b85451a",
        "https://www.trustradius.com/search?t=product&q=food",
        "https://www.trustradius.com/search?t=vendor&t=product&q=food",
        "https://www.trustradius.com/products?q=food",
        "https://www.trustradius.com/vendors?q=food",
    ],
    "maxItems": 20,
    "endPage": 2,
    "extendOutputFunction": "($) => { return {} }",
    "customMapFunction": "(object) => { return {...object} }",
    "proxy": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("epctex/trustradius-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)