
Trustradius Insights Scraper
Pricing
$20.00/month + usage

Trustradius Insights Scraper
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.
0.0 (0)
Pricing
$20.00/month + usage
1
Total users
72
Monthly users
2
Runs succeeded
>99%
Last modified
a day ago
You can access the Trustradius Insights 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.
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_input = {9 "search": "food",10 "startUrls": [11 "https://www.trustradius.com/vendors/trustradius",12 "https://www.trustradius.com/products/canva",13 "https://www.trustradius.com/users/61ff850b1928ba0031703629",14 "https://www.trustradius.com/users/5c24577c4452bb002b85451a",15 "https://www.trustradius.com/search?t=product&q=food",16 "https://www.trustradius.com/search?t=vendor&t=product&q=food",17 "https://www.trustradius.com/products?q=food",18 "https://www.trustradius.com/vendors?q=food",19 ],20 "maxItems": 20,21 "endPage": 2,22 "extendOutputFunction": "($) => { return {} }",23 "customMapFunction": "(object) => { return {...object} }",24 "proxy": { "useApifyProxy": True },25}26
27# Run the Actor and wait for it to finish28run = client.actor("epctex/trustradius-scraper").call(run_input=run_input)29
30# Fetch and print Actor results from the run's dataset (if there are any)31print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])32for item in client.dataset(run["defaultDatasetId"]).iterate_items():33 print(item)34
35# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start
Trustradius Data Extractor API in Python
The Apify API client for Python is the official library that allows you to use Trustradius Insights Scraper API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-client
Other API clients include: