Working with YouTube
How to Download a YouTube Thumbnail
Every YouTube video stores its thumbnail at several fixed sizes, and they are reachable directly. Here is how to get the largest one, and why it sometimes does not exist.
2 min read · Published 29 August 2026
A thumbnail is an ordinary image file sitting on YouTube's servers, and unlike the video itself it is not protected by anything clever. Every video has one, stored at a handful of fixed sizes, each at a predictable address built from the video's id.
That is the whole mechanism. Once you know the id, you know the addresses, and the largest one that exists is the best copy available.
The sizes YouTube keeps
Five, and they are not all guaranteed to be there. The largest, maxresdefault, only exists if the uploader supplied an image at least that big, which is why it is missing on older videos and on some uploads from phones.
| Name | Size | Always present |
|---|---|---|
| maxresdefault | 1280 x 720 | No, depends on the upload |
| sddefault | 640 x 480 | Usually |
| hqdefault | 480 x 360 | Yes |
| mqdefault | 320 x 180 | Yes |
| default | 120 x 90 | Yes |
A missing maxresdefault does not return an error. YouTube serves a small grey placeholder instead, which is why a download can appear to work and give you a 120 pixel image of nothing. Checking the dimensions of what arrived is the only reliable test.
Getting the id out of the link
The id is eleven characters and appears in every form of YouTube link, just in different places. In a normal watch link it follows v=. In a short youtu.be link it is the whole path. In a Shorts link it follows /shorts/.
- youtube.com/watch?v=dQw4w9WgXcQ gives dQw4w9WgXcQ
- youtu.be/dQw4w9WgXcQ gives the same
- youtube.com/shorts/dQw4w9WgXcQ gives the same
Anything after an ampersand is a timestamp, a playlist or tracking, and none of it belongs in the id.
Doing it by hand
Paste the id into this address and open it: i.ytimg.com/vi/THE_ID/maxresdefault.jpg. If a full size image appears, right click and save it. If a small grey rectangle appears, that size was never made, and hqdefault.jpg is the next one down that always exists.
The tool on this site does the same thing and saves the checking. It reads the id out of whatever form of link you paste, requests each size, discards the grey placeholder rather than offering it as a download, and shows you what genuinely exists.
What you may do with it
A thumbnail is someone's work and is covered by copyright like any other image. Your own thumbnails are yours to retrieve, which is the ordinary reason for wanting one: an original was lost, or a channel is being rebuilt and the images are only on YouTube now.
Somebody else's is theirs. Reuploading it, using it on your own video, or putting it in a product is an infringement whether or not the download was easy. Reference, study, and commentary that genuinely qualifies as fair use are different matters, and the line is narrower than most people assume.
Common questions
Why is the downloaded thumbnail small and grey?
Because maxresdefault was never created for that video. YouTube does not return an error for a size that does not exist; it serves a 120 pixel grey placeholder instead. Fall back to hqdefault, which is always present, or use a tool that checks the dimensions and refuses the placeholder.
Can I get a thumbnail in higher quality than 1280 x 720?
No. 1280 x 720 is the largest YouTube stores, and it is the size it asks uploaders for. If the original was larger, YouTube kept only its own resized copy, and that copy is the best that can be retrieved.
Does this work for Shorts?
Yes. A Short has an eleven character id like any other video, and the same thumbnail addresses apply. The image is still stored in the 16:9 frame rather than the vertical one you see while watching.
Is downloading a thumbnail legal?
Retrieving your own is straightforward. Somebody else's thumbnail is their copyrighted work, and downloading it does not transfer any right to publish or reuse it. Ease of access is not permission.