Decathlon China Running Product Catalog Scraper avatar

Decathlon China Running Product Catalog Scraper

Pricing

Pay per event

Go to Apify Store
Decathlon China Running Product Catalog Scraper

Decathlon China Running Product Catalog Scraper

Scrapes Decathlon CN's running product catalog including Kalenji and Kiprun lines with CNY pricing, sizes, colors, images, and product details from the China Nuxt SSR storefront.

Pricing

Pay per event

Rating

0.0

(0)

Developer

BowTiedRaccoon

BowTiedRaccoon

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

Scrape Decathlon China's complete running product catalog from decathlon.com.cn — including Kalenji, Kiprun, and Domyos running lines — with CNY pricing, product names, images, model codes, and stock availability.

What it does

The actor crawls Decathlon CN's Nuxt SSR storefront and extracts structured product data from the running category tree. It processes up to 40 products per listing page by parsing the embedded window.__NUXT__ hydration state and returns clean records ready for analysis.

Extracted fields:

  • Product ID (DSM code), name (Chinese + brand), and direct product URL
  • CNY pricing: current selling price and original list price
  • Sale status (on_sale: true/false)
  • Brand name (e.g., Kalenji, Kiprun, Domyos)
  • Model code and item codes (SKU variants)
  • Product images (CDN URLs)
  • Stock availability
  • Short product tagline (catch_line)

When to use it

  • Price research: CNY pricing is significantly cheaper than EU/US Decathlon — useful for cross-country price arbitrage studies
  • Brand analysis: Kalenji and Kiprun are Decathlon's volume running lines for the Chinese amateur market
  • Competitive intelligence: No other Apify actor focuses specifically on the Decathlon CN storefront
  • Market research: 250+ Decathlon stores in China; the CN catalog reflects local demand patterns

Input configuration

FieldTypeDefaultDescription
maxItemsinteger10Maximum number of products to return. Leave empty for all.
categoryIdsstring[]["644a1c540c5c730001d1e0e6"]Decathlon CN category IDs to scrape. Defaults to the running category.

Finding category IDs

Category IDs are 24-character hex strings visible in the URL when browsing Decathlon CN. Example:

  • 644a1c540c5c730001d1e0e6 — Running (跑步)
  • 644a1c540c5c730001d1dda4 — Training & Competition (训练竞技)

Example output

{
"product_id": "326223",
"product_name": "跑鞋KIPRUN KS900 男款",
"product_name_en": "跑鞋KIPRUN KS900 男款",
"product_url": "https://www.decathlon.com.cn/product-detail?dsm_code=326223&model_code=8640567",
"category_id": "644a1c540c5c730001d1e0e6",
"brand": "KIPRUN",
"price_cny": 899.9,
"price_original_cny": 899.9,
"on_sale": false,
"model_code": "8640567",
"images": "https://pixl.decathlon.com.cn/p2647490/k$...",
"in_stock": true,
"catch_line": "专业马拉松竞赛跑鞋,为速度而生。"
}

Technical notes

  • No proxy required — the site responds cleanly without Cloudflare or geo-blocking
  • Uses Nuxt SSR hydration data (window.__NUXT__) for reliable extraction without JavaScript rendering
  • Pagination handled automatically via ?current_page=N query parameters
  • Respects polite crawl rate (~20 req/min)