Capterra Scraper avatar
Capterra Scraper
Try for free

7 days trial then $40.00/month - No credit card required now

View all Actors
Capterra Scraper

Capterra Scraper

epctex/capterra-scraper
Try for free

7 days trial then $40.00/month - No credit card required now

Extract valuable data from the Capterra software database with our Capterra Scraper. Gather product information, related products, insights, portfolio, real client reviews, and more. Explore top software listings for your business.

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 mode

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "startUrls": [
11        "https://www.capterra.com/p/162035/Filestage/",
12        "https://www.capterra.com/services/sp/178/accenture/",
13        "https://www.capterra.com/services/data-analytics/",
14        "https://www.capterra.com/business-intelligence-software/"
15    ],
16    "maxItems": 1,
17    "endPage": 5,
18    "endPageForReviews": 1,
19    "proxy": {
20        "useApifyProxy": true,
21        "apifyProxyGroups": [
22            "RESIDENTIAL"
23        ]
24    },
25    "customMapFunction": (object) => { return {...object} }
26};
27
28(async () => {
29    // Run the Actor and wait for it to finish
30    const run = await client.actor("epctex/capterra-scraper").call(input);
31
32    // Fetch and print Actor results from the run's dataset (if any)
33    console.log('Results from dataset');
34    const { items } = await client.dataset(run.defaultDatasetId).listItems();
35    items.forEach((item) => {
36        console.dir(item);
37    });
38})();
Developer
Maintained by Community
Actor metrics
  • 16 monthly users
  • 99.3% runs succeeded
  • 0.4 days response time
  • Created in Nov 2021
  • Modified about 8 hours ago