Scrape product pages on action.com
The call that returns product pages from action.com today, with the parameters, patterns and failure modes read off the request log since 14 Aug 2026. Last tested 6 Sep 2026.
About action.com
action.com describes itself as “6000+ products in decoration, cleaning, personal care and more ✓ For less than you expect ✓ Always nearby. Check out our assortment on the Action website. | Bezoek vandaag jouw favoriete Action winkel in Nederland!”.
Its home page declares 12 languages: cs-cz, de-at, de-ch, de-de, es-es, fr-be, fr-ch, fr-fr, fr-lu, it-ch, it-it, nl-be.
Its sitemaps list 19,836 URLs across 16 files (category-sitemap, product-sitemap, store-sitemap, misc-sitemap, content-sitemap). 19,836 of the 19,836 dated entries changed in the last 30 days, the newest on 6 Sep 2026.
Its robots.txt names 19 sitemaps and disallows 12 paths.
Measured on Crawlbase
Success rate over every request from every account in August 2026: 92.5%. Patterns, countries and failures come from the request log since 14 Aug 2026; 0.0% of successful calls used the JavaScript token and the median answer took 2.7s.
Among the 20 ecommerce sites in the Cookbook, action.com ranks 18 of 20 by success rate; the category median is 96.3%. Its median answer of 2.7s sits at the category median of 2.9s. 9 of the 20 accept the plain token, this one among them.
The call
Product 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 product URL from the site.
curl "https://api.crawlbase.com/?token=YOUR_TOKEN&url=https%3A%2F%2Fwww.action.com%2Fde-de%2Fp%2F1234567"from crawlbase import CrawlingAPI api = CrawlingAPI({'token': 'YOUR_TOKEN'}) r = api.get('https://www.action.com/de-de/p/1234567') html = r['body']
const { CrawlingAPI } = require('crawlbase'); const api = new CrawlingAPI({ token: 'YOUR_TOKEN' }); const r = await api.get('https://www.action.com/de-de/p/1234567');
Parameters that matter
| Parameter | Set it to | Why |
|---|---|---|
country | leave unset | Most successful calls set no country (100%) and succeed at 92.2%. |
javascript | leave unset | Plain-token calls succeed at 92.2% and make up 100% of the traffic. A browser costs more and, on this site, buys nothing. |
URL patterns accounts fetch
| Pattern | Share of successes | JavaScript token | Country | Query parameters |
|---|---|---|---|---|
/de-de/p/{id} | 49.3% | 0.0% | none | none |
/fr-fr/p/{id} | 42.0% | 0.0% | none | none |
Fields you get
A product page usually carries an ld+json Product block with name, price, currency and availability, and the same values in the visible markup. Read the block first; it changes less often than the layout.
What breaks, and the fix
Of the failures since 14 Aug 2026, the site answered:
Run it on a schedule
A catalogue refresh is a list of product URLs. Push it to the Crawler with a callback, let it pace the calls and retry what the site refuses, and read the results from Cloud Storage. The median answer on this site is 2.7s.
Questions
Do I need a browser to scrape action.com?
No. 92.2% of plain-token calls succeed and accounts send 100% of their traffic without a browser.
How much does a action.com page cost on Crawlbase?
1 credit without a browser. action.com is in the standard tier.
Which country should I set for action.com?
None is needed: most successful calls leave it unset.