# DHgate Keyword Product Scraper

**Use case:** 

Scrape DHgate product listings, prices, suppliers, sold counts, and product URLs from a wholesale keyword search.

## Input

```json
{
  "searchQueries": [
    "wireless earbuds"
  ],
  "startUrls": [
    {
      "url": "https://www.dhgate.com/wholesale/fashion-bags/c107011.html"
    }
  ],
  "maxItems": 25,
  "maxPagesPerSource": 2,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "itemCode": {
    "label": "Item code",
    "format": "string"
  },
  "title": {
    "label": "Product",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "string"
  },
  "minOrder": {
    "label": "MOQ",
    "format": "string"
  },
  "soldCount": {
    "label": "Sold",
    "format": "integer"
  },
  "feedbackPercent": {
    "label": "Feedback %",
    "format": "number"
  },
  "reviewScore": {
    "label": "Rating",
    "format": "number"
  },
  "sellerName": {
    "label": "Supplier",
    "format": "string"
  },
  "sellerTier": {
    "label": "Seller tier",
    "format": "integer"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "string"
  },
  "imageUrl": {
    "label": "Image",
    "format": "string"
  },
  "categoryId": {
    "label": "Category ID",
    "format": "string"
  },
  "collectionQuery": {
    "label": "Query",
    "format": "string"
  },
  "page": {
    "label": "Page",
    "format": "integer"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [DHgate Product & Supplier Scraper](https://apify.com/automation-lab/dhgate-product-supplier-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/dhgate-product-supplier-scraper) to learn more, explore other use cases, and run it yourself.