# JD.com Store Scraper — Full Shop Product Catalog

**Use case:** 

Scrape a full JD.com shop's product catalog by shop ID: every item ID, title, and product link across all pages. Export to CSV or JSON, no code.

## Input

```json
{
  "operation": "shopCatalog",
  "keyword": "华为手机",
  "itemId": "100256400499",
  "shopId": "1000004259",
  "maxPages": 3
}
```

## Output

```json
{
  "_operation": {
    "label": "Op"
  },
  "status": {
    "label": "Status"
  },
  "itemId": {
    "label": "Item ID"
  },
  "productTitle": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price (¥)"
  },
  "priceDisplay": {
    "label": "Price raw"
  },
  "shopName": {
    "label": "Shop"
  },
  "salesText": {
    "label": "Sales"
  },
  "_page": {
    "label": "Page"
  }
}
```

## About this Actor

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