All scrapers
Business data
G2
g2.com
99.9% Success rate
12.1s Avg response
DataDome Protection
6,000 calls Measured over
G2 is the standard source for B2B software reviews and competitive positioning. It is also one of the hardest DataDome deployments in the benchmark: the field averaged 36.63%, our run returned 99.9%.
What you can extract
- Product name, vendor and category
- Star rating and review count
- Individual review text, title and date
- Reviewer company size and industry
- Category grid position and competitors
How to scrape it
curl -X POST \
-H "X-ScrapeUnblocker-Key: $SU_API_KEY" \
"https://api.scrapeunblocker.com/getPageSource?url=https%3A%2F%2Fwww.g2.com%2F&parsed_data=true"import requests
resp = requests.post(
"https://api.scrapeunblocker.com/getPageSource",
headers={"X-ScrapeUnblocker-Key": SU_API_KEY},
params={"url": "https://www.g2.com/", "parsed_data": True},
)
print(resp.text)import { ScrapeUnblockerClient } from 'scrapeunblocker';
const su = new ScrapeUnblockerClient({ apiKey: process.env.SU_API_KEY });
const results = await su.getPageSource({
url: 'https://www.g2.com/',
parsedData: true,
});
console.log(results); Requests are POST and take their parameters in the query string. Browser rendering always happens - there is no flag to enable.
Related scrapers
Start scraping this site today
Free tier included. No credit card required to test it.