Scrape B2B product data from Made-in-China.com — one of China's largest B2B wholesale platforms.
- 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
- Go to Made-in-China.com Scraper on Apify Store
- Enter your search keywords
- Click "Start" and download results as JSON/CSV/Excel
git clone https://github.com/wfgsss/made-in-china-scraper-example.git
cd made-in-china-scraper-example
npm install
npm testnpm -g install apify-cli
apify call jungle_intertwining/made-in-china-scraper -i input.json{
"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) |
| 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/... |
[
{
"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
}
]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.
- Yiwugo Scraper — Scrape China's largest small commodity wholesale market
- DHgate Scraper — Scrape DHgate.com for dropshipping product data
- How to Scrape Made-in-China.com for B2B Product Data
- Made-in-China vs DHgate vs Yiwugo: Which Platform to Scrape
- How to Build a China Wholesale Price Tracker
MIT