# Scrape News Site Thumbnail Images for Trend Analysis

**Use case:** 

Extract all article thumbnail images from a major news website to analyze visual trends in news reporting and media coverage. This helps content creators unders

## Input

```json
{
  "startUrl": "https://www.bbc.co.uk/news",
  "maxCrawlDepth": 2,
  "maxImagesPerPage": 180,
  "maxTotalImages": 1500,
  "imageExtensions": [
    "jpg",
    "jpeg",
    "png",
    "webp"
  ],
  "includeBackgroundImages": false,
  "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"
}
```

## 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.