
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
73
Monthly users
3
Runs succeeded
>99%
Last modified
3 hours 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.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "search": "food",12 "startUrls": [13 "https://www.trustradius.com/vendors/trustradius",14 "https://www.trustradius.com/products/canva",15 "https://www.trustradius.com/users/61ff850b1928ba0031703629",16 "https://www.trustradius.com/users/5c24577c4452bb002b85451a",17 "https://www.trustradius.com/search?t=product&q=food",18 "https://www.trustradius.com/search?t=vendor&t=product&q=food",19 "https://www.trustradius.com/products?q=food",20 "https://www.trustradius.com/vendors?q=food"21 ],22 "maxItems": 20,23 "endPage": 2,24 "extendOutputFunction": ($) => { return {} },25 "customMapFunction": (object) => { return {...object} },26 "proxy": {27 "useApifyProxy": true28 }29};30
31// Run the Actor and wait for it to finish32const run = await client.actor("epctex/trustradius-scraper").call(input);33
34// Fetch and print Actor results from the run's dataset (if any)35console.log('Results from dataset');36console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);37const { items } = await client.dataset(run.defaultDatasetId).listItems();38items.forEach((item) => {39 console.dir(item);40});41
42// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Trustradius Data Extractor API in JavaScript
The Apify API client for JavaScript is the official library that allows you to use Trustradius Insights Scraper API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-client
Other API clients include: