Skip to content

wfgsss/made-in-china-scraper-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Made-in-China.com Scraper

Scrape B2B product data from Made-in-China.com — one of China's largest B2B wholesale platforms.

Apify Store License: MIT Node.js

Who is this for?

  • Import/Export Companies — Find verified Chinese suppliers with MOQ and pricing data
  • Procurement Managers — Compare B2B product prices across thousands of suppliers
  • Market Researchers — Analyze China's manufacturing landscape and pricing trends
  • E-commerce Entrepreneurs — Source products directly from Chinese factories
  • Data Analysts — Build datasets of B2B wholesale product information

Quick Start

Option 1: Run on Apify Platform (Easiest)

  1. Go to Made-in-China.com Scraper on Apify Store
  2. Enter your search keywords
  3. Click "Start" and download results as JSON/CSV/Excel

Option 2: Run Locally

git clone https://github.com/wfgsss/made-in-china-scraper-example.git
cd made-in-china-scraper-example
npm install
npm test

Option 3: Use with Apify CLI

npm -g install apify-cli
apify call jungle_intertwining/made-in-china-scraper -i input.json

Input Example

{
    "searchKeywords": ["bluetooth speaker", "solar panel", "led light"],
    "maxPages": 3
}
Parameter Type Default Description
searchKeywords string[] ["bluetooth speaker"] Keywords to search
maxPages integer 3 Max pages per keyword (each page ≈ 20-30 products)

Output Fields

Field Description Example
productName Product title "Portable Bluetooth Speaker..."
productUrl Direct link to product page https://...made-in-china.com/product/...
productId Internal product ID FnuUdHgbEXrB
price Price or price range US$4.80-6.55
moq Minimum order quantity 16 Pieces
supplierName Company name Foshan Worldcell Electronic Co., Ltd.
supplierUrl Supplier store URL https://worldcell.en.made-in-china.com
supplierLocation Province/city Guangdong, China
businessType Trading Company / Manufacturer Trading Company
memberLevel Supplier membership tier Diamond Member
auditedSupplier Whether supplier is audited true / false
imageUrl Product image URL https://image.made-in-china.com/...

Sample Output

[
  {
    "productName": "ABS-1208 Bluetooth-Enabled Wireless Speaker with RGB Light",
    "productUrl": "https://infocore.en.made-in-china.com/product/...",
    "productId": "abc123",
    "price": "US$2.20",
    "moq": "50 Pieces",
    "supplierName": "Dongguan Infocore Electronic Technology Co., Ltd",
    "supplierUrl": "https://infocore.en.made-in-china.com",
    "supplierLocation": "Guangdong, China",
    "businessType": "Manufacturer",
    "memberLevel": "Diamond Member",
    "auditedSupplier": true,
    "imageUrl": "https://image.made-in-china.com/...",
    "searchKeyword": "bluetooth speaker",
    "pageNum": 1,
    "position": 1
  },
  {
    "productName": "Natural Bamboo Speaker Creative Bluetooth Portable Wireless Mini Speaker",
    "productUrl": "https://sofly.en.made-in-china.com/product/...",
    "productId": "def456",
    "price": "US$2.60-3.00",
    "moq": "100 Pieces",
    "supplierName": "Changsha Sofly Industry Co.,Ltd",
    "supplierUrl": "https://sofly.en.made-in-china.com",
    "supplierLocation": "Hunan, China",
    "businessType": "Trading Company",
    "memberLevel": "Gold Member",
    "auditedSupplier": false,
    "imageUrl": "https://image.made-in-china.com/...",
    "searchKeyword": "bluetooth speaker",
    "pageNum": 1,
    "position": 3
  }
]

FAQ

Q: Does it scrape product detail pages? A: The current version scrapes search result pages which contain price, MOQ, supplier info, and images. Detail pages are protected by captcha — a future update may add support.

Q: How many products can I scrape? A: Each search page returns ~20-30 products. With 3 pages per keyword andwords, you get 600-900 products per run.

Q: Can I export to CSV or Excel? A: Yes! On Apify platform, click "Export" after the run completes. Supports JSON, CSV, Excel, and XML.

Q: Does it work with proxies? A: Yes, it automatically uses residential proxies when available to minimize captcha triggers.

Related Tools

  • Yiwugo Scraper — Scrape China's largest small commodity wholesale market
  • DHgate Scraper — Scrape DHgate.com for dropshipping product data

Related Articles

License

MIT

Releases

No releases published

Packages

 
 
 

Contributors