Scrape product pages on primark.com
The call that returns product pages from primark.com today, with the parameters, patterns and failure modes read off the request log since 14 Aug 2026. Last tested 6 Sep 2026.
About primark.com
primark.com describes itself as “Check out the latest fashion trends and collections for men, women, kids, babies, home and beauty. There are new items to find in store and online every day”.
Its home page declares 12 languages: en-gb, en-ie, de-de, de-at, es-es, it-it, en-us, fr-fr, fr-be, nl-nl, nl-be, pt-pt.
Its robots.txt names 19 sitemaps and disallows 12 paths, among them /checkout, /api/, /metrics/.
Measured on Crawlbase
Success rate over every request from every account in August 2026: 99.2%. Patterns, countries and failures come from the request log since 14 Aug 2026; 99.7% of successful calls used the JavaScript token and the median answer took 30.0s.
Among the 20 fashion sites in the Cookbook, primark.com ranks 9 of 20 by success rate; the category median is 98.5%. Its median answer of 30.0s is slower than the category median of 13.5s. 10 of the 20 accept the plain token; this one needs the JavaScript token.
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_JS_TOKEN&url=https%3A%2F%2Fwww.primark.com%2Fen-gb%2Fp%2Fexample-page"from crawlbase import CrawlingAPI api = CrawlingAPI({'token': 'YOUR_JS_TOKEN'}) r = api.get('https://www.primark.com/en-gb/p/example-page') html = r['body']
const { CrawlingAPI } = require('crawlbase'); const api = new CrawlingAPI({ token: 'YOUR_JS_TOKEN' }); const r = await api.get('https://www.primark.com/en-gb/p/example-page');
Parameters that matter
| Parameter | Set it to | Why |
|---|---|---|
country | leave unset | Most successful calls set no country (99.3%) and succeed at 99.8%. |
javascript | use the JavaScript token | 99.9% of calls use the JavaScript token and succeed at 99.2%. The plain token was tried too rarely (1 calls) to say anything about it. |
URL patterns accounts fetch
| Pattern | Share of successes | JavaScript token | Country | Query parameters |
|---|---|---|---|---|
/en-gb/p/{slug} | 93.5% | 100% | none | none |
/en-gb/c/{slug} | 4.8% | 100% | none | page |
Fields you get
Structured data Crawlbase found on primark.com, by page type. These are the schema.org types in the page, the fields your parser can read straight from the JSON-LD block:
- Home:
Organization, WebSite
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 30.0s.
Questions
Do I need a browser to scrape primark.com?
Yes for most pages. JavaScript-token calls succeed at 99.2% while plain-token calls reach 100%.
How much does a primark.com page cost on Crawlbase?
1 credit without a browser. primark.com is in the standard tier.
Which country should I set for primark.com?
None is needed: most successful calls leave it unset.
Other pages on primark.com
Pages primark.com lists in its own sitemaps, fetched by Crawlbase on 6 Sep 2026 and verified in 2 consecutive runs. Each row is the cheapest call that returned the page with its content.
| Page | Example | Token | Country | Median |
|---|---|---|---|---|
Home/Structured data: Organization, WebSite | primark.com/ | Plain | none | 4.8s |
Search/{slug}/s/article | none | Plain | none | 4.1s |
Listing/nl-nl/c/{slug} | primark.com/nl-nl/c/kids | JavaScript | none | 5.1s |
Profile/nl-nl/profile | primark.com/nl-nl/profile | Plain | none | 2.8s |
Other/nl-nl/{slug} | primark.com/nl-nl/stores | Plain | none | 3.0s |