# JD.com Electronics Keyword Search

**Use case:** 

Use authenticated JD.com search to collect electronics listings for a keyword, including prices, discounts, ratings, shops, and product URLs.

## Input

```json
{
  "keywords": [
    "wireless earbuds",
    "gaming laptop"
  ],
  "categoryUrls": [],
  "productUrls": [
    "https://item.jd.com/100044707599.html"
  ],
  "maxResultsPerSearch": 50,
  "cookies": "pt_key=YOUR_COOKIE; pt_pin=YOUR_PIN",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "productId": {
    "label": "ID",
    "format": "text"
  },
  "productName": {
    "label": "Product Name",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "originalPrice": {
    "label": "Original Price",
    "format": "number"
  },
  "discountPercent": {
    "label": "Discount %",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "shopName": {
    "label": "Shop",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "productUrl": {
    "label": "URL",
    "format": "link"
  },
  "searchKeyword": {
    "label": "Keyword",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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