# Scrape E-commerce Product Descriptions for Market Research

**Use case:** 

Gather product descriptions and features from major e-commerce categories. Analyze product specifications and marketing language to understand market trends and

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.amazon.com/Best-Sellers-Electronics/zgbs/electronics/ref=zg_bs_nav_e_1_e"
    },
    {
      "url": "https://www.ebay.com/b/Electronics/580/bn_1865261"
    }
  ],
  "crawlerType": "playwright:chromium",
  "maxCrawlDepth": 2,
  "maxCrawlPages": 80,
  "maxConcurrency": 5,
  "includeUrlGlobs": [
    "*.amazon.com/*/dp/*",
    "*.ebay.com/itm/*"
  ],
  "excludeUrlGlobs": [],
  "outputFormat": "text"
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "depth": {
    "label": "Depth",
    "format": "number"
  },
  "httpStatusCode": {
    "label": "Status",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Website Content Crawler](https://apify.com/crawlerbros/website-content-crawler) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/website-content-crawler) to learn more, explore other use cases, and run it yourself.