SoftwareAdvice Reviews Scraper - Ratings & Reviewer Data
Pricing
from $1.99 / 1,000 reviews
SoftwareAdvice Reviews Scraper - Ratings & Reviewer Data
Scrape SoftwareAdvice product reviews with overall and category ratings, pros/cons, reviewer details, and vendor responses. Filter by star rating, company size, or time used. Export to JSON, CSV, or Excel. No login required.
Pricing
from $1.99 / 1,000 reviews
Rating
0.0
(0)
Developer
Zen Studio
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
8 days ago
Last modified
Categories
Share
SoftwareAdvice Review Scraper
Scrape reviews from any SoftwareAdvice.com product page. Ratings, pros/cons, reviewer details, company info, vendor responses.
Filter by star rating, company size, or time used. No login required.
| 1,000 reviews in under 30 seconds — the richest SoftwareAdvice output on Apify. |
| Review Scrapers ➤ | Review Aggregator | G2 Reviews | Capterra Reviews | TrustRadius Reviews |
|---|

How to Scrape SoftwareAdvice Reviews
- Find your product on softwareadvice.com and copy the URL
- Paste the URL into the SoftwareAdvice product URL field
- Set Max reviews to control how many reviews to extract (default: all)
- Optionally apply filters for star rating, company size, or time used
- Click Start and download your results as JSON, CSV, or Excel
Pricing
$1.99 per 1,000 reviews. You only pay for what you scrape.
| Scenario | Reviews | Cost |
|---|---|---|
| Quick test | 10 | ~$0.02 |
| Product comparison | 100 | ~$0.20 |
| Full product audit | 1,000 | ~$1.99 |
Try it free — new Apify users get $5 in platform credits. That's ~1,400 reviews at no cost.
Input Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
productUrl | string | Yes | SoftwareAdvice product page URL |
maxResults | integer | No | Max reviews to return. 0 = all reviews |
sort | string | No | MOST_RECENT (default) or HIGHEST_COMPLETENESS_SCORE |
starRating | array | No | Filter by star ratings: 1-5 |
companySize | array | No | Filter by company size: Self-Employed to 10,000+ |
timeUsed | array | No | Filter by usage duration: Free Trial to 2+ years |
Accepted URL formats
https://www.softwareadvice.com/product/101384-Zoom-Video-Conferencing/reviews/https://www.softwareadvice.com/product/101384-Zoom-Video-Conferencing/
Output Example
{"url": "https://www.softwareadvice.com/product/101384-Zoom-Video-Conferencing/reviews/","reviewId": "GetApp___6871603","title": "Not worth the headache of their terms","writtenOn": "2025-08-08T21:57:24Z","overallRating": 1.0,"easeOfUseRating": 2.0,"customerSupportRating": 1.0,"functionalityRating": 4.0,"valueForMoneyRating": 1.0,"prosText": "Reliable and good sound, great mix of features...","consText": "HORRIBLE customer service. Predatory contracts...","generalComments": "Their contract practices are sneaky and inflexible...","reasonsForChoosing": "more reliable than teams, better audio...","reasonsForSwitching": null,"frequencyOfUsing": "Weekly","timeUsed": "MoreThan2Years","reviewerAnonymityOn": false,"reviewerIncentive": "NoIncentive","vendorReply": null,"previousVersions": { "nodes": [] },"reviewer": {"firstName": "Sam","lastName": "Mathews","companySize": "B","industry": "E-Learning","isValidated": true,"profilePictureUrl": "https://reviews.getapp.com/cdn/profile-images/linkedin/87a04...jpeg"},"scrapedAt": "2026-03-09T07:53:01.370635+00:00"}
Use Cases
- Competitive analysis — Compare sentiment and ratings across competing products
- Feature gap analysis — Extract pros/cons at scale to find what users love and hate
- Due diligence — Bulk-extract reviews for software companies in your portfolio
- Lead qualification — Filter by company size to find reviews from your ICP
- Win/loss analysis — Analyze reasons for choosing and switching
API Integration
Python
from apify_client import ApifyClientclient = ApifyClient("your_token")run = client.actor("zen-studio/softwareadvice-review-scraper").call(run_input={"productUrl": "https://www.softwareadvice.com/product/101384-Zoom-Video-Conferencing/reviews/","maxResults": 100,"starRating": ["5", "4"],})for review in client.dataset(run["defaultDatasetId"]).iterate_items():print(f"{review['overallRating']} - {review['title']}")
JavaScript
import { ApifyClient } from "apify-client";const client = new ApifyClient({ token: "your_token" });const run = await client.actor("zen-studio/softwareadvice-review-scraper").call({productUrl: "https://www.softwareadvice.com/product/101384-Zoom-Video-Conferencing/reviews/",maxResults: 100,starRating: ["5", "4"],});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(`Got ${items.length} reviews`);
Advanced Usage
Scrape only negative reviews
{"productUrl": "https://www.softwareadvice.com/product/101384-Zoom-Video-Conferencing/reviews/","starRating": ["1", "2"],"sort": "MOST_RECENT"}
Filter by enterprise companies
{"productUrl": "https://www.softwareadvice.com/product/101384-Zoom-Video-Conferencing/reviews/","companySize": ["G", "H", "I"],"maxResults": 500}
Get reviews from long-term users only
{"productUrl": "https://www.softwareadvice.com/product/101384-Zoom-Video-Conferencing/reviews/","timeUsed": ["LessThan2Years", "MoreThan2Years"]}
FAQ
How do I find the product URL? Go to softwareadvice.com, find your product, copy the URL.
How many reviews can I scrape?
Set maxResults to 0 for all reviews. Zoom has 14,000+.
Can I combine filters? Yes. Star rating, company size, and time used work together.
Is there a free tier? New Apify users get $5 in platform credits, enough for ~1,400 reviews at no cost.
Legal Compliance
This Actor extracts publicly available review data from SoftwareAdvice.com. Users are responsible for complying with applicable data protection regulations (GDPR, CCPA) and SoftwareAdvice's terms of service.