# JD.com product scraper SKU price monitor

**Use case:** 

Scrape JD.com product details, prices, images, shops, and review signals from SKU IDs for ecommerce monitoring.

## Input

```json
{
  "productUrls": [
    {
      "url": "https://item.jd.com/100012043978.html"
    }
  ],
  "skus": [
    "100012043978"
  ],
  "maxItems": 1,
  "includeApiDetails": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "JP"
  }
}
```

## Output

```json
{
  "sku": {
    "label": "SKU"
  },
  "url": {
    "label": "Product URL",
    "format": "link"
  },
  "title": {
    "label": "Title"
  },
  "brandName": {
    "label": "Brand"
  },
  "shopName": {
    "label": "Shop"
  },
  "price": {
    "label": "Price"
  },
  "currency": {
    "label": "Currency"
  },
  "commentCount": {
    "label": "Reviews"
  },
  "goodRate": {
    "label": "Good rate"
  },
  "productStatus": {
    "label": "Status"
  },
  "mainImageUrl": {
    "label": "Main image",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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