Decathlon Product Search Scraper
Pricing
from $1.50 / 1,000 results
Decathlon Product Search Scraper
Scrape product listings from Decathlon.com across all regional sites (.es, .nl, .fr, etc.). Collect prices, variants, SKUs, images, sizes, reviews, and availability instantly — perfect for price monitoring, product research, and competitive intelligence in the sports retail sector.
Pricing
from $1.50 / 1,000 results
Rating
0.0
(0)
Developer
Stealth mode
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
5 days ago
Last modified
Categories
Share
Decathlon Product Search Scraper: Extract Sports Gear Data Globally
What Is Decathlon?
Decathlon is a global sports retail giant operating in over 50 countries with localized websites (Decathlon.es, Decathlon.nl, Decathlon.fr, etc.). Its product catalog spans thousands of items across categories like footwear, apparel, equipment, and outdoor gear. Manual browsing across regional sites to track pricing, variants, and availability is inefficient — the Decathlon Product Search Scraper automates multi-country data collection, delivering structured product intelligence instantly.
Overview
The Decathlon Product Search Scraper extracts product listings from Decathlon search results pages, capturing 14 essential data points per product. It is ideal for:
- Price monitoring platforms tracking sports gear costs across regions
- E-commerce aggregators building multi-brand product databases
- Market researchers analyzing Decathlon's inventory and pricing strategies
- Retail analysts monitoring competitor stock and product variants
- Developers integrating sports product data into marketplace applications
Key features include support for multi-country Decathlon domains, configurable item limits per search, and robust error handling via ignore_url_failures.
Input Format
The scraper accepts a JSON configuration object:
{"urls": ["https://www.decathlon.es/es/search?Ntt=shoe&from=40&size=40"],"ignore_url_failures": true,"max_items_per_url": 200}
| Field | Description |
|---|---|
urls | Links to Decathlon product search result pages across any regional domain (.es, .nl, .fr, .de, etc.) |
max_items_per_url | Maximum products to scrape per search URL (default: 20, range: 1–200+) |
ignore_url_failures | If true, continues scraping remaining URLs if some fail; if false, halts on first error |
Tip: Use full search URLs with query parameters (e.g.,
?Ntt=shoe) to filter by keyword, category, or price range. Pagination parameters (from,size) control which results are returned.
Output Format
Example output snippet:
{"id": "0a570b72-078d-4d7c-8960-a02fb36a5d0c_0a570b72-078d-4d7c-8960-a02fb36a5d0c_c251","supermodel_id": "0a570b72-078d-4d7c-8960-a02fb36a5d0c","sku_id": "bcb21599-c12c-4d0d-9916-0af3a688dbdb","label": "Kawasaki Retro 23 Canvas Shoe K23GREY","images": [{"src": "https://contents.mediadecathlon.com/m23054215/k$4c0dca987583ae67a5ca58ebad5ad23f/picture.jpg","alt": "picture"}],"url": "/es/p/mp/kawasaki-retro-23-canvas-shoe-k23grey/0a570b72-078d-4d7c-8960-a02fb36a5d0c/c251","variant_type": "color","product_types": ["marketplace"],"models": [{"available_sizes": ["36 (UK 3.5)","37 (UK 5)","38 (UK 5)","39 (UK 6)","40 (UK 6)","45 (UK 10)"],"brand": "KAWASAKI","id": "0a570b72-078d-4d7c-8960-a02fb36a5d0c_c251","sku_id": "bcb21599-c12c-4d0d-9916-0af3a688dbdb","images": [{"src": "https://contents.mediadecathlon.com/m23054215/k$4c0dca987583ae67a5ca58ebad5ad23f/picture.jpg","alt": "picture"}],"variant_type": "color","label": "Kawasaki Retro 23 Canvas Shoe K23GREY","price": {"currencies": {"main": {"value_with_taxes": 48.97,"currency": "EUR"}},"is_uniform": true,"price_type": "STANDARD","is_offer_price_uniform": true},"available_online": true,"sellable_online": true,"same_fulfiller_seller": true,"thumbnail": {"src": "https://contents.mediadecathlon.com/m23054215/k$4c0dca987583ae67a5ca58ebad5ad23f/picture.jpg","alt": "picture"},"nature": "zapatillas de deporte","url": "/es/p/mp/kawasaki-retro-23-canvas-shoe-k23grey/0a570b72-078d-4d7c-8960-a02fb36a5d0c/c251","url_with_model_or_supermodel": "/es/p/mp/kawasaki-retro-23-canvas-shoe-k23grey/0a570b72-078d-4d7c-8960-a02fb36a5d0c/c251","sports": [{"name": "entrenamiento callejero"}],"seller": {"name": "SUPERBRANDS","type": "THIRD_PARTY"}}],"price": {"currencies": {"main": {"value_with_taxes": 48.97,"currency": "EUR"}},"is_uniform": true,"price_type": "STANDARD","is_offer_price_uniform": true},"available_sizes": ["36 (UK 3.5)","37 (UK 5)","38 (UK 5)","39 (UK 6)","40 (UK 6)","45 (UK 10)"],"variance_codes": [{"type": "colors","count": 1,"channel": "WEB"}],"reviews": null,"spotlighted": false,"from_url": "https://www.decathlon.es/es/search?Ntt=shoe"}
Each scraped product record contains 14 fields with detailed product and variant information:
Product Identification
| Field | Meaning |
|---|---|
ID | Unique internal Decathlon product identifier |
Supermodel ID | Master product ID linking all variants (color, size, material) |
SKU ID | Stock Keeping Unit for inventory tracking and POS systems |
Label | Official product name as displayed on Decathlon |
URL | Direct link to the product detail page |
Product Classification
| Field | Meaning |
|---|---|
Product Types | Category tags (e.g., "Running Shoes", "Winter Coats") |
Models | Product line or model name within the brand |
Variant Type | Distinguishing attributes (color, size, material variant) |
Availability & Inventory
| Field | Meaning |
|---|---|
Available Sizes | Array of sizes currently in stock (e.g., ["40", "41", "42", "43"]) |
Variance Codes | Internal codes identifying each size/color/material combination |
Pricing & Commerce
| Field | Meaning |
|---|---|
Price | Current selling price in the regional currency |
Media & Social
| Field | Meaning |
|---|---|
Images | URLs to product images (typically multiple angles and variants) |
Reviews | Aggregated rating or review count from customer feedback |
Promotion & Features
| Field | Meaning |
|---|---|
Spotlighted | Boolean flag indicating if the product is featured, promoted, or on sale |
How to Use
-
Build search URLs — Visit Decathlon.es (or any regional domain) and perform a search. Copy the URL from the search results page. You can modify query parameters to filter by keyword, category, or price.
-
Configure input — Paste URLs into the
urlsarray. Setmax_items_per_urlbased on how many products you need (200 is common for comprehensive monitoring). -
Set error handling — Enable
ignore_url_failures: trueto ensure the scraper continues if individual pages are unreachable. -
Run the scraper — Initiate the run and monitor the log for progress and any warnings.
-
Export data — Download results as JSON, CSV, or Excel for analysis, price comparison, or database ingestion.
Best practices:
- Use specific search queries (e.g.,
Ntt=running+shoes) to target relevant products. - Monitor
Available SizesandSpotlightedfields to track inventory and promotional activity. - Combine data from multiple regional sites (.es, .nl, .fr) to build a cross-border price intelligence dataset.
- Store
Supermodel IDto identify products across variants and regional updates.
Use Cases & Business Value
- Price monitoring: Track product prices across Decathlon's regional sites in real-time
- Competitive analysis: Compare your sports brand's pricing against Decathlon's offerings
- Inventory insights: Monitor available sizes and stock status to forecast demand
- Marketplace integration: Auto-populate product catalogs with Decathlon's sports data
- Promotion tracking: Identify spotlighted and sale items to analyze promotional strategies
- Market research: Build historical datasets to analyze sports retail trends by region and product category
The Decathlon Product Search Scraper delivers clean, structured data that integrates into price monitoring systems, databases, dashboards, and business intelligence platforms — turning raw listings into actionable competitive intelligence.
Conclusion
The Decathlon Product Search Scraper is an essential tool for price analysts, e-commerce developers, and retail researchers. By automating data collection across Decathlon's global domains, it saves hours of manual work while providing accurate, consistent product intelligence. Whether you're tracking prices, monitoring inventory, or building product aggregators, this scraper delivers the data you need.