Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
This youtube thumbnail downloader extracts the preview image from any public YouTube video in every resolution YouTube serves.
Paste a watch URL, a youtu.be short link, a Shorts URL, an embed URL, or a mobile m.youtube.com link, and the tool returns all five thumbnail sizes ranging from the full 1280×720 HD version down to the tiny 120×90 icon. Each thumbnail has a live preview, a one-click download button, and a copy-URL button so you can paste the image address straight into a doc, CMS, or research note.
Why download a thumbnail? Creators study competitor thumbnails to reverse-engineer what works in their niche. Journalists and educators embed thumbnails as reference when discussing a video. Accessibility testers pull thumbnails to check color contrast and visual hierarchy. Designers collect them for moodboards or to analyze typography trends. All of these uses typically fall under fair use or direct permission, but we’ll cover the legal nuances below.
The tool is entirely client-side. It reads the video ID from the URL using a regex, then constructs the five well-known thumbnail URLs on YouTube’s public CDN (img.youtube.com). No API key, no login, no server, no tracking. If a resolution isn’t available (YouTube doesn’t always generate maxresdefault for older or SD-uploaded videos), the tool detects the placeholder image automatically and marks that slot as "Not available."
Every public YouTube video gets up to five auto-generated thumbnail images served from https://img.youtube.com/vi/{VIDEO_ID}/. The file names are fixed and predictable:
The 16:9 thumbnails (maxres and mq) match the aspect ratio of the video player. The others are rendered in a 4:3 frame with black letterbox bars baked into the JPEG for widescreen videos.
The 1280×720 maxresdefault.jpg is the version most people want, but YouTube only creates it when the original upload was high definition. If the creator uploaded at 480p, 360p, or was working before YouTube processed HD (pre-2008 content), no max-res file exists.
When a file doesn’t exist, YouTube doesn’t return HTTP 404. Instead, it serves a small 120×90 grey placeholder image — the same one across every unavailable thumbnail request. That’s how this tool detects the gap: if the image loads but its natural width is 120 pixels when we asked for maxresdefault.jpg, we know it’s the placeholder, not the real thumbnail, and we label the card "Not available for this video."
If the video is private, unlisted, age-restricted, or has been removed, even hqdefault.jpg may return the placeholder. In that case this tool will show placeholders for most or all slots.
The underlying logic is simple enough to explain in a paragraph. The regex /(?:youtube\.com\/(?:[^\/]+\/.+\/|(?:v|e(?:mbed)?|shorts)\/|.*[?&]v=)|youtu\.be\/)([^"&?\/\s]{11})/ matches any of YouTube’s URL formats and captures the 11-character video ID. That ID is plugged into five URL templates targeting img.youtube.com/vi/{id}/. Each URL is loaded as an <img> tag to show a preview. When you click Download, the tool fetches the image as a binary blob, creates a temporary object URL, attaches it to a hidden anchor element with a download attribute, clicks it programmatically, then revokes the object URL to free memory. This pattern forces the browser to save the file with your chosen filename instead of opening it in a new tab, which is what happens if you right-click and "save as" on the raw URL.
YouTube video URLs come in half a dozen shapes. This tool recognizes all of them:
https://www.youtube.com/watch?v=VIDEOID — the canonical long formhttps://youtube.com/watch?v=VIDEOID&t=30s&list=PLxyz — with timestamps and playlist paramshttps://youtu.be/VIDEOID — the share-button short formhttps://youtu.be/VIDEOID?t=15 — short form with timestamphttps://www.youtube.com/shorts/VIDEOID — YouTube Shortshttps://www.youtube.com/embed/VIDEOID — iframe embed URLshttps://www.youtube.com/v/VIDEOID — legacy player URLhttps://m.youtube.com/watch?v=VIDEOID — mobile web URLsYou can even paste just the 11-character video ID on its own. The tool will recognize it via a fallback check.
Thumbnails are not in the public domain. They are copyrighted works owned by the video’s uploader, or, for older auto-generated thumbnails, arguably derivative works of the video itself. YouTube’s own Terms of Service restrict scraping video content for redistribution, though thumbnails occupy a slightly different space because they are served from a public CDN without authentication.
In most jurisdictions, downloading a thumbnail for these uses falls within fair use or fair dealing:
Uses that are clearly not fair use and require explicit permission include:
If in doubt, contact the uploader. Many creators will grant permission for educational or commentary use if you ask.
Video research. Studying the thumbnails of top-performing videos in your niche is one of the fastest ways to understand what visual language your audience responds to — color palettes, facial expressions, text size, composition.
Content creation reference. Screenwriters and YouTubers save thumbnails from videos they want to reference, quote, or analyze in their own content.
SEO analysis. Search engine result pages for video queries show thumbnails prominently. Downloading competitor thumbnails in full resolution lets you examine them for patterns you can test against your own click-through rate.
Accessibility testing. Screen reader QA and color-contrast audits often start from the thumbnail, since it’s the first visual signal a sighted user gets.
Documentation and presentations. Embedding a thumbnail in a slide or doc with a link to the video is usually cleaner than embedding the video player itself.
YouTube deliberately exposes thumbnail files on a permissive CDN because the entire YouTube ecosystem depends on it — search results, related-video sidebars, embed placeholders, and RSS feeds all rely on being able to fetch thumbnails without authentication. If you’ve ever built an app that shows "a video was just posted" notifications, you’ve probably hit img.youtube.com/vi/{id}/hqdefault.jpg yourself.
Because the URLs are public and stable, you don’t need the YouTube Data API, an API key, or OAuth. That also means rate limits are generous and this tool will never break because of an API quota.
If you’re comfortable with the terminal and want to batch-download thumbnails for many videos at once, the open-source yt-dlp tool handles it elegantly:
yt-dlp --write-thumbnail --skip-download "https://youtu.be/VIDEOID"
yt-dlp --write-all-thumbnails --skip-download "https://youtu.be/VIDEOID"
The --write-all-thumbnails flag saves every resolution. yt-dlp also accepts playlists and channel URLs, so you can pull thumbnails across a creator’s entire catalog in one command. For a one-off or a handful of videos, however, this web tool is faster.
Downloading a thumbnail is not illegal, but how you use it is what matters. Personal reference, research, teaching, criticism, and commentary are generally covered by fair use. Republishing a thumbnail commercially or in a way that competes with the original video requires the uploader’s permission. When in doubt, ask.
YouTube only generates the 1280×720 maxresdefault.jpg for videos uploaded in HD. Older uploads, SD-only videos, and some Shorts never get this resolution. When the file doesn’t exist, YouTube returns a small 120×90 placeholder, which this tool detects and flags as unavailable. The 480×360 hqdefault.jpg is the highest resolution guaranteed for every video.
No. This tool only downloads thumbnails — the preview image. It does not download video or audio files. YouTube’s Terms of Service prohibit downloading video content without permission. For videos you own or have rights to, YouTube Studio provides an official download option.
Yes. Shorts URLs in the form https://www.youtube.com/shorts/VIDEOID are fully supported. Shorts use the same underlying video ID and thumbnail filenames as regular videos, though the thumbnail will be a still frame from the vertical video, often with visible aspect-ratio padding.
No. The tool constructs direct URLs to YouTube’s public thumbnail CDN (img.youtube.com). No authentication, API key, or account is required. Everything runs in your browser.
This tool handles one video at a time for clarity. For bulk downloads across a playlist or channel, the command-line tool yt-dlp with --write-all-thumbnails --skip-download is the standard approach.
All five resolutions are JPEG files with the .jpg extension. If you need PNG or WebP, download the JPEG and convert it using the Image Compressor or a desktop image editor.
The lower-resolution files (120×90, 320×180, 480×360) are inherently small. If you need a crisp thumbnail for a blog post or video, always start with maxresdefault.jpg when available. If only hqdefault.jpg (480×360) is available for that video, upscaling further will not recover detail that was never captured.
Data accurate as of: April 2026