# Extract Ecommerce Product Images for Market Research

**Use case:** 

Quickly collect all product images from a target ecommerce category page across multiple sub-pages to support market trend analysis and product comparison. This

## Input

```json
{
  "startUrl": "https://www.adidas.co.uk/men-running-shoes",
  "maxCrawlDepth": 3,
  "maxImagesPerPage": 150,
  "maxTotalImages": 3000,
  "imageExtensions": [
    "jpg",
    "jpeg",
    "png",
    "webp"
  ],
  "includeBackgroundImages": false
}
```

## Output

```json
{
  "url": {
    "label": "Image URL",
    "format": "link"
  },
  "sourcePage": {
    "label": "Source page",
    "format": "link"
  },
  "alt": {
    "label": "Alt text",
    "format": "text"
  },
  "discoveredVia": {
    "label": "Discovered via",
    "format": "text"
  },
  "crawlDepth": {
    "label": "Depth",
    "format": "number"
  },
  "mimeTypeHint": {
    "label": "Type",
    "format": "text"
  }
}
```

## About this Actor

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