Scrape reviews on powerreviews.com
The call that returns reviews from powerreviews.com today, with the parameters, patterns and failure modes read off the request log since 14 Aug 2026.
Measured on Crawlbase
Success rate over every request from every account in August 2026: 94.6%. Patterns, countries and failures come from the request log since 14 Aug 2026; 99.9% of successful calls used the JavaScript token and the median answer took 10.9s.
Among the 5 reviews sites in the Cookbook, powerreviews.com sits at 4 of 5 by success rate; the category median is 96.7%. Its median answer of 10.9s is faster than the category median of 16.3s. 1 of the 5 accept the plain token; this one needs the JavaScript token.
The call
Article pages are the shape the accounts fetch most here, with the country and token that succeed most often. Replace the placeholder path with a real article URL from the site.
curl "https://api.crawlbase.com/?token=YOUR_JS_TOKEN&country=FR&url=https%3A%2F%2Fwww.powerreviews.com%2Fm%2F1234567%2Fexample-page"from crawlbase import CrawlingAPI api = CrawlingAPI({'token': 'YOUR_JS_TOKEN'}) r = api.get('https://www.powerreviews.com/m/1234567/example-page', {'country': 'FR'}) html = r['body']
const { CrawlingAPI } = require('crawlbase'); const api = new CrawlingAPI({ token: 'YOUR_JS_TOKEN' }); const r = await api.get('https://www.powerreviews.com/m/1234567/example-page', { country: 'FR' });
Parameters that matter
| Parameter | Set it to | Why |
|---|---|---|
country | FR | 99.5% of successful calls set it and they succeed at 94.7%; calls without a country succeed at 23.7%. |
javascript | use the JavaScript token | JavaScript-token calls succeed at 94.7% against 22.3% for the plain token, and 99.6% of calls use it. |
URL patterns accounts fetch
| Pattern | Share of successes | JavaScript token | Country | Query parameters |
|---|---|---|---|---|
/m/{id}/{slug} | 100% | 100% | FR | apikey, _noconfig |
Fields you get
An article page carries a headline, a date and an author, usually in an ld+json Article block, and the body in the HTML. The block often names the section too.
What breaks, and the fix
Of the failures since 14 Aug 2026, the site answered:
Run it on a schedule
News moves by the hour. Poll the section or the sitemap for new links, then push the article URLs to the Crawler with a callback so the fetches are paced. The median answer on this site is 10.9s.
Questions
Do I need a browser to scrape powerreviews.com?
Yes for most pages. JavaScript-token calls succeed at 94.7% while plain-token calls reach 22.3%.
How much does a powerreviews.com page cost on Crawlbase?
1 credit without a browser. powerreviews.com is in the standard tier.
Which country should I set for powerreviews.com?
FR: that is what 99.5% of successful calls use.