Made-in-China Product Scraper avatar

Made-in-China Product Scraper

Pricing

from $1.00 / 1,000 results

Go to Apify Store
Made-in-China Product Scraper

Made-in-China Product Scraper

Scrape full Made-in-China.com product detail: name, ladder/tier pricing, minimum order, specifications, images, and supplier profile.

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

Farhan Febrian Nauval

Farhan Febrian Nauval

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Categories

Share

Scrape the full product page from Made-in-China.com — product details, tiered (ladder) pricing, minimum order, the full specifications table, images, and the supplier profile — as structured JSON.

Why use this actor

  • Tiered B2B pricing — captures the full price ladder (e.g. 1–9 pcs, 10–49 pcs, 50–99 pcs, 100+ pcs), the single field B2B buyers care about most, as a clean tierPrices array.
  • Complete specifications — pulls the entire Basic Info / Product Details table (material, model, package size and weight, HS code, and more) into a specs object.
  • Supplier profile — company name, membership tier, location, founding year, and audited status for every product.
  • Canonical product detail — name, description, brand, SKU, MPN, rating, primary price, images, and category breadcrumb.
  • No account, no API key — works straight from public product pages.
  • Stable JSON output — the same field names every run, ready for spreadsheets, databases, or pipelines.

How it works

  1. You provide one or more Made-in-China product page URLs.
  2. The actor fetches each product page and reads its details, tiered pricing, specifications, images, and supplier profile.
  3. Each product is saved as one PRODUCT record.
  4. If a URL can't be loaded or has no product, the actor still writes one diagnostic record so a URL is never silently dropped.
  5. Everything lands in your dataset, exportable as JSON, CSV, or Excel.

You don't need to manage any browsers or scrapers.

Input

{
"urls": [
"https://szgz01.en.made-in-china.com/product/YpVRqbDdbiWG/China-2026-Wireless-Bt-Headphone-Earpro3-Tws-Earbuds-Earphone-Auricolari-Bt-5-1.html"
],
"maxConcurrency": 4,
"maxRequestRetries": 5,
"proxyConfiguration": { "useApifyProxy": true }
}
FieldTypeDescription
urlsarrayRequired. Made-in-China product page URLs (one per array entry). Each URL produces one product record.
maxConcurrencyintegerNumber of product pages fetched in parallel (120). Default 4.
maxRequestRetriesintegerRetries per URL before giving up (115). Default 5.
proxyConfigurationobjectApify Proxy or a custom proxy list. Datacenter proxies work fine for this source.

Output

Each product is one record (recordType: "PRODUCT"):

{
"recordType": "PRODUCT",
"productId": "YpVRqbDdbiWG",
"url": "https://szgz01.en.made-in-china.com/product/YpVRqbDdbiWG/China-2026-Wireless-Bt-Headphone-Earpro3-Tws-Earbuds-Earphone-Auricolari-Bt-5-1.html",
"name": "2026 Wireless Bt Headphone Earpro3 Tws Earbuds Earphone Auricolari Bt 5.1",
"description": "2026 Wireless Bt Headphone Earpro3 Tws Earbuds Earphone Auricolari Bt 5.1, Find Details and Price about Earphone Headphone from ... - Shenzhen Photon Industry Co., Ltd",
"brand": "Shenzhen Photon Industry Co., Ltd",
"sku": "2245461265",
"mpn": "MIC-2245461265",
"rating": { "value": 5, "count": null },
"primaryPrice": { "price": 3.8, "currency": "USD" },
"availability": "https://schema.org/InStock",
"tierPrices": [
{ "minQty": 1, "maxQty": 9, "price": 7.8, "currency": "USD", "unit": "Pieces" },
{ "minQty": 10, "maxQty": 49, "price": 6.8, "currency": "USD", "unit": "Pieces" },
{ "minQty": 50, "maxQty": 99, "price": 5.8, "currency": "USD", "unit": "Pieces" },
{ "minQty": 100, "maxQty": null, "price": 3.8, "currency": "USD", "unit": "Pieces" }
],
"moq": "1 Pieces",
"unit": "Pieces",
"specs": {
"Bluetooth Version": "5.1",
"Function": "Bluetooth",
"Color": "White",
"Transport Package": "Best Paper Film",
"Origin": "Us China Vietnam",
"HS Code": "8517629400",
"Package Size": "10.00cm * 10.00cm * 6.00cm",
"Package Gross Weight": "0.300kg"
},
"supplier": {
"name": "Shenzhen Photon Industry Co., Ltd",
"memberLevel": "Diamond Member",
"location": "Guangdong, China",
"since": "Since 2025",
"auditedSupplier": true,
"url": "https://szgz01.en.made-in-china.com",
"businessType": null,
"certifications": []
},
"images": [
"https://image.made-in-china.com/2f0j00CMNBOSmRPeqU/2026-Wireless-Bt-Headphone-Earpro3-Tws-Earbuds-Earphone-Auricolari-Bt-5-1.webp",
"https://image.made-in-china.com/2f0j00BCnMOqmIPekf/2026-Wireless-Bt-Headphone-Earpro3-Tws-Earbuds-Earphone-Auricolari-Bt-5-1.webp",
"... 4 more"
],
"breadcrumb": [
{ "name": "Home", "url": "https://www.made-in-china.com" },
{ "name": "Consumer Electronics", "url": "https://www.made-in-china.com/Consumer-Electronics-Catalog/Consumer-Electronics.html" },
{ "name": "Bluetooth Products", "url": "https://www.made-in-china.com/Consumer-Electronics-Catalog/Bluetooth-Products.html" },
{ "name": "Bluetooth Headset", "url": "https://www.made-in-china.com/Consumer-Electronics-Catalog/Bluetooth-Headset.html" }
],
"scrapedAt": "2026-06-10T18:53:58Z"
}

If a URL can't be loaded or has no product, the actor writes a single diagnostic record instead:

{
"recordType": "PRODUCT",
"_input": "https://szgz01.en.made-in-china.com/product/ZZZZnonexistent99/China-Does-Not-Exist.html",
"error": "NOT_FOUND",
"scrapedAt": "2026-06-10T18:54:00Z"
}
FieldTypeDescription
recordTypestringAlways "PRODUCT".
productIdstringProduct identifier parsed from the URL.
urlstringThe product page URL.
namestringProduct name.
descriptionstringProduct description.
brandstringBrand / company shown for the product.
skustringProduct SKU.
mpnstringManufacturer part number.
ratingobject{ value, count } — review rating and review count when shown.
primaryPriceobject{ price, currency } — the headline price.
availabilitystringStock availability when shown.
tierPricesarrayLadder pricing bands: { minQty, maxQty, price, currency, unit }. Empty for fixed-price products.
moqstringMinimum order quantity, e.g. 1 Pieces.
unitstringOrder unit, e.g. Pieces.
specsobjectFull specifications table (label → value).
supplierobject{ name, memberLevel, location, since, auditedSupplier, url, businessType, certifications }.
imagesarrayProduct image URLs (main + gallery).
breadcrumbarrayCategory path: { name, url }.
scrapedAtstringISO 8601 timestamp of collection.
errorstringOnly on diagnostic records: NOT_FOUND or BLOCKED_AFTER_RETRIES.

Other Made-in-China / B2B Scrapers

ActorDescription
Made-in-China Search ScraperKeyword search → product cards with supplier, price, MOQ, and attributes.
Made-in-China Product ScraperFull product detail: tiered pricing, specifications, images, and supplier profile.
Made-in-China Supplier ScraperCompany profile, certifications, and full product catalog per supplier.