Free Online MIME Type Lookup
A MIME type (also called a media type or content type) is a standardized string that tells a browser, email client, or server exactly what…
Need to use MIME Type Lookup right now?
A MIME type (also called a media type or content type) is a standardized string that tells a browser, email client, or server exactly what kind of data a file contains — independent of the file's name or extension — so the receiving system knows how to handle it. When a server sends an image, it includes a `Content-Type: image/png` header; when a browser receives that header, it knows to render the bytes as an image rather than trying to display them as text, regardless of what the file happened to be named.
Other tools in Developer Tools
Features
- Runs entirely in your browser
- Privacy-first — your data is never uploaded
- Real-time, instant results
- 100% free, no sign-up required
- Works on desktop, tablet, and mobile
- No installation needed
Who uses this tool?
About MIME Type Lookup
A MIME type (also called a media type or content type) is a standardized string that tells a browser, email client, or server exactly what kind of data a file contains — independent of the file's name or extension — so the receiving system knows how to handle it. When a server sends an image, it includes a `Content-Type: image/png` header; when a browser receives that header, it knows to render the bytes as an image rather than trying to display them as text, regardless of what the file happened to be named.
This matters constantly in web development: setting the correct `Content-Type` header when serving a file from a custom server or API, configuring file upload validation to accept or reject specific MIME types rather than trusting a file's extension (which is trivial to fake), setting the `accept` attribute on an HTML file input to restrict what a user can select, or simply understanding what MIME type corresponds to a file extension you're working with.
This reference covers the MIME types you'll encounter most often in everyday web and application development: common document formats (HTML, CSS, JavaScript, JSON, PDF), image formats (PNG, JPEG, SVG, WebP), audio and video formats (MP3, MP4, WebM), fonts (WOFF, WOFF2, TTF), and Microsoft Office formats (the modern XML-based `.docx`/`.xlsx` types alongside their older `.doc`/`.xls` equivalents), plus the two form-submission content types (`application/x-www-form-urlencoded` and `multipart/form-data`) that every web developer eventually needs to know the difference between.
Search by either the file extension or a keyword from the MIME type itself — searching "image" surfaces every image format at once, which is useful when you're not sure of the exact extension but know the general category of file you're working with.
How it works
- Search by extension or type. Type a file extension (like .png) or a keyword (like "image").
- Copy the MIME type. Click the copy icon next to any result to grab the exact MIME type string.
Examples
Looking up .svg
Input
.svg
Output
image/svg+xml