MIME type lookup
Search by extension (.pdf) or MIME type (application/pdf). Handy when wiring multipart uploads, validating Content-Type headers, or pairing with our magic-byte sniffer. Browser-reported MIME is a hint only — always verify server-side.
Search
39 results
| Extension | MIME type |
|---|---|
| .7z | application/x-7z-compressed |
| .css | text/css |
| .csv | text/csv |
| .dmg | application/x-apple-diskimage |
| .docx | application/vnd.openxmlformats-officedocument.wordprocessingml.document |
| .env | text/plain |
| .exe | application/vnd.microsoft.portable-executable |
| .gif | image/gif |
| .gz | application/gzip |
| .html | text/html |
| .ico | image/x-icon |
| .ini | text/plain |
| .jpeg | image/jpeg |
| .jpg | image/jpeg |
| .js | application/javascript |
| .json | application/json |
| .md | text/markdown |
| .mp3 | audio/mpeg |
| .mp4 | video/mp4 |
| application/pdf | |
| .png | image/png |
| .pptx | application/vnd.openxmlformats-officedocument.presentationml.presentation |
| .scss | text/x-scss |
| .sql | application/sql |
| .svg | image/svg+xml |
| .tar | application/x-tar |
| .toml | application/toml |
| .ts | application/typescript |
| .txt | text/plain |
| .vtt | text/vtt |
| .wav | audio/wav |
| .webm | video/webm |
| .webp | image/webp |
| .woff | font/woff |
| .woff2 | font/woff2 |
| .xlsx | application/vnd.openxmlformats-officedocument.spreadsheetml.sheet |
| .xml | application/xml |
| .yaml | text/yaml |
| .zip | application/zip |
Upload QA tip
Extensions and MIME tables disagree in the real world (text/csv vs application/csv, image/jpg vs image/jpeg). Use this table for documentation and test design; use magic-byte sniffing on real payloads before trusting client-side file.type values.
