How YouTube thumbnails work
Every YouTube video has up to five thumbnail images, served automatically from img.youtube.com. The creator uploads one custom image; YouTube generates the smaller sizes from it. The full-resolution 1280×720 thumbnail only exists if the creator uploaded a high-resolution image — otherwise the largest available is 640×480.
Use cases
- Studying competitor thumbnails — download a channel's latest 10 thumbnails to see patterns in design, color, and composition.
- Building a video reference library — for educators, podcasters, or critics who quote videos.
- Creating thumbnail mockups — drop the downloaded image into Figma or Photoshop as a reference layer.
- Embedding a video preview — use the thumbnail as a click-to-play poster image on your own site.
YouTube thumbnail URL and resolution reference
Every thumbnail lives at a predictable URL — no API key, no auth. Replace VIDEO_ID with the 11-character ID from the watch URL. i.ytimg.com serves the identical files if you prefer that host.
| Filename | Resolution | Shape | Always available? |
|---|---|---|---|
maxresdefault.jpg | 1280×720 | 16:9 | Only if a ≥720p custom thumbnail was uploaded |
sddefault.jpg | 640×480 | 4:3, letterboxed | Usually |
hqdefault.jpg | 480×360 | 4:3, letterboxed | Always — safest fallback |
mqdefault.jpg | 320×180 | 16:9 | Always |
default.jpg | 120×90 | 4:3, letterboxed | Always |
https://img.youtube.com/vi/VIDEO_ID/maxresdefault.jpg https://i.ytimg.com/vi/VIDEO_ID/maxresdefault.jpg # same file, alt host https://i.ytimg.com/vi_webp/VIDEO_ID/maxresdefault.webp # WebP variant
Why maxresdefault.jpg sometimes 404s
maxresdefault.jpgis not generated for every video — it only exists if the creator uploaded a custom thumbnail at least 1280×720. On older videos, on uploads that kept YouTube's auto-selected frame, and on most Shorts, the request returns a plain HTTP 404. The largest guaranteed fallback is hqdefault.jpg, which YouTube generates for every video without exception.
If you're fetching thumbnails programmatically, request maxresdefault.jpg first and fall back to sddefault.jpg then hqdefault.jpgon a 404. Don't detect failure by image size: a 404 from img.youtube.comis a real 404, but some proxies return YouTube's 120×90 grey placeholder with a 200 status instead.
The letterboxing trap
Three of the five sizes are 4:3, not 16:9. YouTube fits the widescreen thumbnail inside a 4:3 canvas and pads the rest with black bars, so hqdefault.jpg at 480×360 contains a 480×270 image with 45px of black above and below. If you drop it straight into a 16:9 poster slot you get bars, not a crop. Use maxresdefault.jpg or mqdefault.jpg — the only two true 16:9 variants — or crop the bars off yourself.
Auto-generated frame grabs
Separately from the custom thumbnail, YouTube samples three still frames from every video — the ones offered in Studio when you upload. They're at /vi/VIDEO_ID/1.jpg, 2.jpg and 3.jpg (120×90), with 480×360 versions at hq1.jpg, hq2.jpg and hq3.jpg. Useful when a video has no custom thumbnail worth grabbing and you want a frame from roughly the start, middle, and end instead.
FAQ
- What is the URL of a YouTube thumbnail?
- https://img.youtube.com/vi/VIDEO_ID/maxresdefault.jpg for the full 1280×720 image. Swap maxresdefault for sddefault (640×480), hqdefault (480×360), mqdefault (320×180), or default (120×90). No API key needed — they're public JPEGs.
- Why does maxresdefault.jpg return a 404?
- It only exists when the creator uploaded a custom thumbnail of at least 1280×720. Videos that kept YouTube's auto-selected frame, older uploads, and most Shorts have no maxres file at all. Fall back to sddefault.jpg, then hqdefault.jpg — hqdefault is generated for every video without exception.
- How do I download a YouTube thumbnail?
- Paste the YouTube URL or video ID into the box above. The tool shows all five available thumbnail sizes — Max resolution (1280×720), SD (640×480), HQ (480×360), MQ (320×180), and small (120×90). Click Download on any size to save the JPEG to your device.
- Is the YouTube thumbnail downloader free?
- Yes. Free, unlimited, no signup, no watermark. The tool runs entirely in your browser — we never see the URL or save anything.
- Why is the max-resolution thumbnail blurry?
- If the creator didn't upload a custom thumbnail, YouTube generates only the lower-resolution sizes. Use the next size down (SD or HQ) for the best available quality.
- Can I use a YouTube thumbnail I downloaded?
- For personal reference, yes. For commercial use, you need permission from the video's creator — thumbnails are part of their copyrighted work. Fair-use commentary and educational use generally is OK in many jurisdictions, but consult a lawyer for anything commercial.
- What sizes does YouTube offer for thumbnails?
- Five standard sizes: maxresdefault (1280×720, only if uploaded), sddefault (640×480), hqdefault (480×360), mqdefault (320×180), and default (120×90). All are JPEGs.
Designing your own thumbnail?
Once it's designed, the YouTube Thumbnail Resizer gets it to 1280×720 under the 2 MB upload limit — the step that rejects most first attempts. For the rest of the upload, generate a chapter list, title and description in seconds with our YouTube Chapter Generator. Or get title alternatives from the Title Generator.