# Bulk download YouTube thumbnails from videos

**Use case:** 

Download thumbnails from multiple YouTube videos in one batch. Paste a list of URLs and get all thumbnails saved as JPEG files. Ideal for content creators.

## Input

```json
{
  "urls": [
    "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
    "https://youtu.be/9bZkp7q19f0",
    "https://www.youtube.com/watch?v=kJQP7kiw5Fk"
  ],
  "thumbnailQuality": "maxresdefault",
  "enableFallback": true,
  "saveToStore": true
}
```

## Output

```json
{
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "thumbnailQuality": {
    "label": "Quality",
    "format": "text"
  },
  "thumbnailUrl": {
    "label": "Thumbnail URL",
    "format": "link"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "url": {
    "label": "Video URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Thumbnail Downloader](https://apify.com/parsebird/youtube-thumbnail-downloader) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parsebird/youtube-thumbnail-downloader) to learn more, explore other use cases, and run it yourself.