Trustradius Insights Scraper avatar

Trustradius Insights Scraper

Try for free

3 days trial then $20.00/month - No credit card required now

View all Actors
Trustradius Insights Scraper

Trustradius Insights Scraper

epctex/trustradius-scraper
Try for free

3 days trial then $20.00/month - No credit card required now

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.

You can access the Trustradius Insights Scraper programmatically from your own JavaScript 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 token
4// Replace the '<YOUR_API_TOKEN>' with your token
5const client = new ApifyClient({
6    token: '<YOUR_API_TOKEN>',
7});
8
9// Prepare Actor input
10const 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": true
28    }
29};
30
31// Run the Actor and wait for it to finish
32const 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:

Developer
Maintained by Community
Actor metrics
  • 3 monthly users
  • 1 star
  • 100.0% runs succeeded
  • Created in May 2022
  • Modified about 16 hours ago