The YouTube Thumbnail Downloader turns any public YouTube video URL or 11-character video ID into direct links for the five thumbnail sizes YouTube documents: maxres, standard, high, medium, and default, commonly associated with 1280 × 720, 640 × 480, 480 × 360, 320 × 180, and 120 × 90 images. Parsing happens locally in your browser against an exact host allowlist, and the resulting cards open images that stay on YouTube's image host (i.ytimg.com), so nothing is uploaded, proxied, copied, or stored on a third-party server. The tool needs no YouTube Data API key, account, or sign-in, which means it does not consume API quota and does not require the Lizely backend to receive your input. Each card shows the image YouTube returned and an Open image link; standard and maximum-resolution cards are labeled optional because YouTube only exposes those variants for some uploads, and a missing card reports the failure honestly instead of substituting a lower-resolution placeholder.

What kinds of YouTube links the tool accepts
Different people paste different shapes of YouTube link, so the downloader is built to recognize the common public formats while rejecting anything that looks like an attempt to smuggle a different host or path into the result. It accepts a regular watch URL, a youtu.be short link, a Shorts URL, an embed URL, a live URL, and the mobile variant of the watch URL. It also accepts a bare 11-character video ID when that ID matches the exact YouTube alphabet of ASCII letters, digits, underscore, or hyphen.
Anything outside this allowlist is rejected before any image URL is built. Lookalike hosts such as youtube.com.example.test, unsupported paths, missing IDs, malformed URLs, and injected filenames all fail parsing, and the filename portion of each thumbnail URL is selected from a fixed allowlist rather than echoed from user input, so the input cannot turn the image URL into an arbitrary path.
| Link shape | Example pattern | Accepted? |
|---|---|---|
| Standard watch | youtube.com/watch?v=ID | Yes |
| Short link | youtu.be/ID | Yes |
| Shorts | youtube.com/shorts/ID | Yes |
| Embed | youtube.com/embed/ID | Yes |
| Live | youtube.com/live/ID | Yes |
| Mobile watch | m.youtube.com/watch?v=ID | Yes |
| Bare video ID | 11 characters: letters, digits, _, - | Yes |
| Lookalike host | youtube.com.example.test/watch?v=ID | Rejected |
| Unsupported path | youtube.com/anything/else/ID | Rejected |
The five thumbnail sizes YouTube exposes
YouTube publishes a documented set of thumbnail categories for every public upload, and the downloader surfaces all five. Three of them are usually available; the larger two are returned only when the video owner has uploaded a sufficiently large source image and YouTube has finished generating the variant. The five filenames the tool builds are maxresdefault.jpg, sddefault.jpg, hqdefault.jpg, mqdefault.jpg, and default.jpg, mapped to the documented maxres, standard, high, medium, and default categories.
| Category | Typical dimensions | Always returned? |
|---|---|---|
| maxres | 1280 × 720 | Optional |
| standard | 640 × 480 | Optional |
| high | 480 × 360 | Usually yes |
| medium | 320 × 180 | Usually yes |
| default | 120 × 90 | Usually yes |
The size mapping itself is documented in Google's YouTube Data API reference for the thumbnails resource, which lists the same five categories. The downloader does not upsample, sharpen, or otherwise transform these images: each card shows exactly the file YouTube serves at that path.
How to view and save a YouTube thumbnail from any video link
Once you have the right link shape in mind, the actual flow is short. The YouTube Thumbnail Downloader page is the entry point; everything happens in your browser and the input never leaves your device. If you want a deeper walkthrough of the final save step on different operating systems, the convert a YouTube thumbnail to a saved image file guide covers the browser-level save commands in more detail.
- Paste a supported YouTube URL into the input, or enter the exact 11-character video ID directly. Watch, youtu.be, Shorts, embed, live, and mobile links all work; anything outside the allowlist is rejected before the page builds any image URL.
- Select Get thumbnails and wait a moment for the five YouTube-hosted preview cards to load. Each card displays the image that YouTube returned and an Open image link. If a card does not appear, that size was not available for the video.
- Right-click the chosen size and use your browser's save-image command, or open the image in a new tab from the Open image link and save it from there. The file stays on YouTube's image host; the downloader does not proxy, copy, or store it.
If the optional maxres or standard card reports that the image is unavailable, do not assume a smaller variant is "the same" thumbnail at a different size. YouTube only generates those larger variants for videos whose owner uploaded a sufficiently large source image, so reach for the next-lower size that did load.
When maxres or standard stays unavailable
Some uploads simply do not have a maximum-resolution or standard thumbnail. This is a YouTube-side limitation, not a bug in the downloader: the upload may have started from a low-resolution source, the video owner may have replaced the thumbnail with a smaller image, or YouTube may still be generating the larger variant. The downloader hides the Open image link for any optional size whose image fails to load and reports the failure on the card, rather than handing you a different size under the requested label.
The practical workaround is to pick the next size that did return an image. A high-resolution 480 × 360 image is often perfectly serviceable for blog posts, slide decks, and social cards, and it is the same picture YouTube serves to embedded players that do not request a larger variant. If you specifically need a 1280 × 720 source, the only reliable path is to ask the video owner for the original artwork.
Privacy, copyright, and what the tool does not do
Because parsing runs locally against an exact host allowlist, your link is not sent to the Lizely backend. The five thumbnail URLs the page builds point at i.ytimg.com, YouTube's image host, and the images load directly from there. The downloader does not download private videos, bypass permission checks, retrieve deleted content, remove watermarks, upscale images, verify ownership, or inspect a video's license, and it never calls the quota-bearing YouTube Data API.
Opening an image is a technical convenience, not a grant of reuse rights. Thumbnails may be protected by copyright, trademark, privacy, publicity, or platform rules, so use them only when you own the video, have the owner's permission, or have a clear legal basis. The YouTube Data API videos resource documents the platform rules that govern reuse, and those rules apply whether you reached the thumbnail through this tool or by any other means.
Limits worth knowing before you paste
A handful of situations will produce a partial result or no result at all, and it helps to know them in advance so you do not waste time chasing an input that the tool was never designed to handle.
- Private, unlisted-as-private, age-restricted, or deleted videos. The tool can only open thumbnail resources that YouTube makes publicly reachable; anything behind a sign-in wall stays behind it, and removed videos stop serving their thumbnail paths.
- Lookalike hosts and malformed links. Anything outside the exact host allowlist (youtube.com and its subdomains, plus youtu.be) is rejected before image URLs are built, including clever variants such as youtube.com.example.test and injected path segments.
- Optional variants. maxres and standard are returned only when YouTube has them; the page reports this rather than faking a result or substituting a smaller image at the same label.
- Replaced or restricted thumbnails. When a video owner replaces a thumbnail, restricts a video, or removes it, the previously working card stops working on the next load, and availability can change without further notice.
None of these limits depend on the downloader; they reflect what YouTube's image host actually serves for a given video at a given moment. As long as you treat the tool as a way to open the publicly hosted files YouTube already exposes and not as a way to retrieve content you would not otherwise see, the result lines up with the platform's own rules.
How this differs from a thumbnail conversion workflow
Tools that focus on "converting a YouTube thumbnail" typically frame the task as changing a file format: pulling the image down, processing it locally, and writing a new file such as a JPG or PNG to disk. The downloader here takes a simpler route. There is no server-side conversion step and no transcoding pass, because YouTube already serves JPG files at the i.ytimg.com paths the page builds. The Open image link simply opens that already-hosted file in your browser, and saving it is a function of your operating system rather than of the tool.
This matters for two reasons. First, no Lizely server sees your input or stores a copy, so the workflow remains local end-to-end and the quota-bearing YouTube Data API is never involved. Second, the format of the saved file is exactly what YouTube provided, which means a maxres card delivers the JPG YouTube generated at 1280 × 720 rather than an upscaled or sharpened derivative. If your goal is the platform's native asset at its native resolution, this is a closer match than any workflow that runs the file through a transcoder.