Currys Product Scraper
Pricing
from $4.75 / 1,000 overview products
Currys Product Scraper
Scrape Currys products — price, was-price, ratings, images, specs & finance. Keyword or category search, full detail enrichment, clean JSON/CSV, no code (UK · GBP).
Pricing
from $4.75 / 1,000 overview products
Rating
0.0
(0)
Developer
SIÁN OÜ
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
4 days ago
Last modified
Categories
Share
Currys Product Scraper — Prices, Specs & Offers (UK) 🛒
🎉 Pull Currys prices, was-prices, offers, ratings, and full specs — by keyword or category, no code
Built for UK retail analysts, e-commerce sellers, and brands who need fresh Currys product data on demand
📋 Overview
Track every price, promotion, and product spec on Currys — without writing a single line of code. This scraper turns any Currys search or category into a clean, structured spreadsheet of products, complete with prices in GBP, was-prices, offers, ratings, images, and finance options.
Why UK retail professionals choose us:
- ✅ Complete product data: 25+ fields per product — price, was-price, offers, rating, review count, brand, SKU, EAN, finance and more
- ⚡ Fast search-first mode: pull 20 products per page in seconds; scale to thousands across multiple searches
- 🎯 Native GBP pricing: every price, was-price and finance figure exactly as a UK shopper sees it
- 💰 Pay only for results: charged per product you actually receive — no wasted spend, free tier to test
- 💎 Detail enrichment: add the full specifications table and long product description with one switch
- ✨ NEW: search by keyword or category, sort by most popular, price, or customer rating — just like the Currys site
✨ Features
- 🔎 Keyword & Category Search: scrape any Currys search term or category page
- 🏷️ Full Pricing: current price, was/marked price and every attached offer or promotion (GBP)
- 📆 Finance Options: headline monthly payment and representative APR where offered
- ⭐ Ratings & Reviews: star rating and total review count for every product
- 🖼️ Product Images: all product image URLs, ready for catalogs or feeds
- 📋 Full Specifications: complete technical spec table in detail mode
- 📝 Long Descriptions: the full marketing description in detail mode
- 🧭 Category Breadcrumbs: the full taxonomy path for each product
- 🛡️ Care Plans: available protection / care-plan options
- 📦 Availability: in-stock status and delivery availability label
🎬 Quick Start
Pick a mode, type a keyword (or paste a category id), set how many products you want — run. Results land in a clean dataset you can export to JSON, CSV or Excel.
curl -X POST 'https://api.apify.com/v2/acts/sian.agency~currys-product-scraper/runs?token=YOUR_TOKEN' \-H 'Content-Type: application/json' \-d '{"keywords": ["wireless headphones"], "scrapeMode": "overview", "maxResults": 40}'
🚀 Getting Started (3 Simple Steps)
Step 1: Choose what to scrape
Add one or more search keywords (e.g. dishwasher, 4k tv) — or, for advanced category harvesting, paste a Currys category id.
Step 2: Pick a mode & sort
Choose Overview (fast) or Detail (full specs), then sort by most popular, price, or customer rating.
Step 3: Run & export
Start the run and export your products as JSON, CSV or Excel.
That's it! In a couple of minutes, you'll have:
- A clean spreadsheet of Currys products with GBP pricing
- Ratings, images, offers and finance for each product
- Full specification tables (in detail mode)
📥 Input Configuration
| Field | Type | Required | Description |
|---|---|---|---|
| keywords | array | No | Free-text Currys searches (one per line) |
| categoryIds | array | No | Advanced: Currys category ids to harvest whole categories |
| scrapeMode | string | No | overview (fast) or detail (full specs + description) |
| sort | string | No | most_popular, price_low, price_high, top_rated |
| maxResults | integer | No | Cap on total products returned (FREE: 25, PAID: unlimited) |
Provide either keywords OR categoryIds (at least one is required).
Example:
{"keywords": ["wireless headphones", "dishwasher"],"scrapeMode": "detail","sort": "top_rated","maxResults": 100}
📤 Output
Results are saved to the Apify dataset with 25+ fields including:
| Field | Type | Description |
|---|---|---|
| productTitle | string | Full product name |
| brand | string | Manufacturer / brand |
| price | number | Current selling price (GBP) |
| original_price | number | Was / marked price (GBP) |
| currency | string | Always GBP |
| rating | number | Average customer rating (out of 5) |
| review_count | number | Number of customer reviews |
| images | array | All product image URLs |
| in_stock | boolean | Whether the product is buyable now |
| availability | string | Availability label |
| category | string | Leaf category |
| offers | array | Promotion / offer descriptions |
| monthly_payment | number | Headline finance monthly amount (GBP) |
| specs | object | Full key/value spec table (detail mode) |
| description | string | Long product description (detail mode) |
Example:
{"item_id": "10299058","productTitle": "SAMSUNG Galaxy Buds4 Pro Wireless Bluetooth Noise-Cancelling Earbuds - Black","brand": "SAMSUNG","price": 219.0,"original_price": null,"currency": "GBP","rating": 4.8,"review_count": 965,"in_stock": true,"category": "IN EAR HEADPHONES","url": "https://www.currys.co.uk/products/samsung-galaxy-buds4-pro-...-10299058.html"}
💼 Use Cases & Examples
1. Price & Promo Monitoring
Retail analysts tracking Currys prices over time. Input: A list of category keywords · Output: Daily price, was-price and offers · Use: Spot price drops and competitor promotions early.
2. Competitor Pricing Intelligence
Electronics sellers benchmarking against Currys. Input: Keywords for your product range · Output: GBP prices, ratings and stock · Use: Position your own pricing against the UK market leader.
3. Catalog & Assortment Research
Brands auditing how their products appear on Currys. Input: Brand or product keywords · Output: Full product records with specs · Use: Verify listings, imagery and spec accuracy.
4. Product-Spec Extraction for Feeds
Marketplaces and aggregators building product feeds. Input: Category ids in detail mode · Output: Full spec tables + descriptions · Use: Populate rich product feeds without manual entry.
5. Stock & Availability Checks
Resellers monitoring what's in stock. Input: Specific product keywords · Output: In-stock flags and availability labels · Use: Trigger reorders or alerts.
6. UK Electronics Market Research
Analysts studying the UK consumer-electronics market. Input: Broad category keywords · Output: Prices, ratings, review counts · Use: Measure demand, ratings and pricing trends.
🔗 Integration Examples
JavaScript/Node.js
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: 'YOUR_TOKEN' });const run = await client.actor('sian.agency/currys-product-scraper').call({keywords: ['wireless headphones'],scrapeMode: 'overview',});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(items[0]);
Python
from apify_client import ApifyClientclient = ApifyClient('YOUR_TOKEN')run = client.actor('sian.agency/currys-product-scraper').call(run_input={'keywords': ['wireless headphones'], 'scrapeMode': 'overview'})for item in client.dataset(run['defaultDatasetId']).iterate_items():print(item)
cURL
curl -X POST 'https://api.apify.com/v2/acts/sian.agency~currys-product-scraper/runs?token=YOUR_TOKEN' \-H 'Content-Type: application/json' \-d '{"keywords": ["wireless headphones"]}'
Automation Workflows (N8N / Zapier / Make)
- Trigger: Schedule or webhook
- HTTP Request: Call actor API
- Process: Handle JSON results
- Action: Save, notify, or transform
📊 Performance & Pricing
FREE Tier (Try It Now)
- 25 products per run — full feature access, same quality
- No credit card required
- Perfect for testing and small projects
PAID Tier (Production Ready)
- Unlimited products per run
- Faster processing, no delays
- Pay-per-result: only charged for products you actually receive
💰 Transparent pay-per-result pricing — the fast Overview row is the cheap, high-volume option; Detail adds the full spec sheet when you need it.
❓ Frequently Asked Questions
Q: How many products can I scrape? A: FREE tier: 25 per run. PAID tier: unlimited.
Q: What currency are prices in? A: All prices, was-prices and finance figures are in GBP — Currys is a UK retailer.
Q: What's the difference between Overview and Detail mode? A: Overview returns search-result data fast (price, ratings, images, offers, finance). Detail adds the full specifications table and the long product description from each product page.
Q: How do I scrape a whole category?
A: Use the advanced categoryIds field — paste a Currys category id. Or just use keywords; a broad keyword automatically resolves to its category.
Q: What output formats are available? A: JSON, CSV, Excel — export directly from the Apify dataset.
Q: Is this legal? A: Yes — we only extract publicly available data. See the legal section below.
🐛 Troubleshooting
No products returned
- Check your keyword spelling and try a broader term.
- Some very niche terms return few results — try a category-level keyword.
Fewer products than expected
- FREE tier is capped at 25 products per run — upgrade for unlimited.
- A lower-than-expected
maxResultswill cap the output.
Missing specs / description
- Specs and long descriptions only populate in Detail mode. Switch
scrapeModetodetail.
⚖️ Is it legal to scrape data?
Our actors are ethical and do not extract any private user data, such as email addresses, gender, or location. They only extract what the user has chosen to share publicly. We therefore believe that our actors, when used for ethical purposes by Apify users, are safe.
However, you should be aware that your results could contain personal data. Personal data is protected by the GDPR in the European Union and by other regulations around the world. You should not scrape personal data unless you have a legitimate reason to do so. If you're unsure whether your reason is legitimate, consult your lawyers.
You can also read Apify's blog post on the legality of web scraping.
Trademark notice: Currys™ is a trademark of Currys Group Limited. This actor is an independent tool and is not affiliated with, endorsed by, or sponsored by Currys. "Currys" is used only to describe the publicly available data this tool helps you collect.
🤝 Support
Join our active support community
- For issues or questions, open an issue in the actor's repository
- Check SIÁN Agency Store for more automation tools
- 📧 apify@sian-agency.online
Built by SIÁN Agency | More Tools