
Capterra Scraper
- epctex/capterra-scraper
- Modified
- Users 275
- Runs 3.2k
- Created by
epctex
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.
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.
# Set API token
API_TOKEN=<YOUR_API_TOKEN>
# Prepare Actor input
cat > input.json <<'EOF'
{
"startUrls": [
"https://www.capterra.com/search/product?search=cloud",
"https://www.capterra.com/p/162035/Filestage/",
"https://www.capterra.com/services/sp/178/accenture/",
"https://www.capterra.com/services/data-analytics/",
"https://www.capterra.com/business-intelligence-software/"
],
"maxItems": 50,
"endPage": 5,
"endPageForReviews": 1,
"proxy": {
"useApifyProxy": true,
"apifyProxyGroups": [
"RESIDENTIAL"
]
},
"customMapFunction": "(object) => { return {...object} }"
}
EOF
# Run the Actor
curl "https://api.apify.com/v2/acts/epctex~capterra-scraper/runs?token=$API_TOKEN" \
-X POST \
-d @input.json \
-H 'Content-Type: application/json'