# Archived Newsroom Story Images by Source Page

**Use case:** 

Download and archive images from selected news sources with comprehensive metadata. Get high-resolution images, SHA-256 hashes, and more.

## Input

```json
{
  "urls": [
    {
      "url": "https://apnews.com/article/technology-artificial-intelligence-regulation"
    },
    {
      "url": "https://www.bbc.com/news/technology"
    },
    {
      "url": "https://techcrunch.com/category/artificial-intelligence/"
    }
  ],
  "mode": "page",
  "includeSrcset": true,
  "includeOgTags": true,
  "minWidth": 200,
  "minHeight": 200,
  "minSizeBytes": 5000,
  "maxImagesPerUrl": 50,
  "maxUrls": 10000,
  "dedupByHash": true,
  "stripExif": false,
  "convertFormat": "none",
  "filenamePattern": "{source}-{slug}-{hash}.{ext}",
  "outputFormat": [
    "dataset",
    "kv-store",
    "zipPerUrl"
  ],
  "s3Bucket": "",
  "webhookUrl": "",
  "maxConcurrency": 10,
  "downloadTimeoutMs": 15000,
  "imageCheckMaxRetries": 3,
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "failFast": false,
  "debugLogging": false
}
```

## Output

```json
{
  "filename": {
    "label": "Image Filename",
    "format": "string"
  },
  "content_type": {
    "label": "Image Type",
    "format": "string"
  },
  "width": {
    "label": "Width (px)",
    "format": "number"
  },
  "height": {
    "label": "Height (px)",
    "format": "number"
  },
  "size_bytes": {
    "label": "File Size (Bytes)",
    "format": "number"
  },
  "source_url": {
    "label": "Original Page",
    "format": "string"
  },
  "exif_stripped": {
    "label": "EXIF Stripped",
    "format": "boolean"
  },
  "error": {
    "label": "Error Log",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Bulk Image Downloader: 22-Field Metadata, SHA-256 & ZIP](https://apify.com/getascraper/bulk-image-downloader) with a specific input configuration. Visit the [Actor detail page](https://apify.com/getascraper/bulk-image-downloader) to learn more, explore other use cases, and run it yourself.