# DHgate Sourcing and Price Monitor

**Use case:** 

Monitor high-selling DHgate listings under a price ceiling and export supplier-ready ecommerce catalog data.

## Input

```json
{
  "searchQueries": [
    "phone cases",
    "wireless chargers"
  ],
  "startUrls": [
    {
      "url": "https://www.dhgate.com/wholesale/fashion-bags/c107011.html"
    }
  ],
  "maxItems": 100,
  "maxPagesPerSource": 5,
  "maxPrice": 20,
  "minSold": 50,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "sellerId": {
    "label": "Seller ID",
    "format": "string"
  },
  "sellerName": {
    "label": "Supplier",
    "format": "string"
  },
  "sellerStoreUrl": {
    "label": "Store",
    "format": "string"
  },
  "sellerTier": {
    "label": "Tier",
    "format": "integer"
  },
  "feedbackPercent": {
    "label": "Feedback %",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "integer"
  },
  "reviewScore": {
    "label": "Rating",
    "format": "number"
  },
  "itemCode": {
    "label": "Item code",
    "format": "string"
  },
  "title": {
    "label": "Product",
    "format": "string"
  },
  "priceMin": {
    "label": "Min price",
    "format": "number"
  },
  "priceMax": {
    "label": "Max price",
    "format": "number"
  },
  "originalPrice": {
    "label": "Original price",
    "format": "string"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "unit": {
    "label": "Unit",
    "format": "string"
  },
  "minOrder": {
    "label": "MOQ",
    "format": "string"
  },
  "minOrderQuantity": {
    "label": "MOQ number",
    "format": "number"
  },
  "soldCount": {
    "label": "Sold",
    "format": "integer"
  },
  "freeShipping": {
    "label": "Free shipping",
    "format": "boolean"
  },
  "deliveryEstimate": {
    "label": "Delivery",
    "format": "string"
  },
  "coupons": {
    "label": "Coupons",
    "format": "array"
  },
  "sourceUrl": {
    "label": "Source",
    "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.