AltraTools
📎

MIME Type Lookup

Look up MIME types by file extension or search by MIME type. Essential for web development, Content-Type headers, and file handling.

83 results found
.txtText
text/plain
Plain text file
.htmlText
text/html
HTML document
.htmText
text/html
HTML document
.cssText
text/css
CSS stylesheet
.csvText
text/csv
Comma-separated values
.xmlText
text/xml
XML document
.mdText
text/markdown
Markdown document
.rtfText
text/rtf
Rich Text Format
.jsCode
text/javascript
JavaScript file
.mjsCode
text/javascript
ES Module JavaScript
.jsonData
application/json
JSON data
.jsonldData
application/ld+json
JSON-LD linked data
.tsCode
text/typescript
TypeScript file
.tsxCode
text/typescript-jsx
TypeScript JSX file
.jsxCode
text/jsx
JavaScript JSX file
.pngImage
image/png
PNG image
.jpgImage
image/jpeg
JPEG image
.jpegImage
image/jpeg
JPEG image
.gifImage
image/gif
GIF image
.webpImage
image/webp
WebP image
.svgImage
image/svg+xml
SVG vector image
.icoImage
image/x-icon
Icon file
.bmpImage
image/bmp
Bitmap image
.tiffImage
image/tiff
TIFF image
.avifImage
image/avif
AVIF image
.heicImage
image/heic
HEIC image (Apple)
.mp3Audio
audio/mpeg
MP3 audio
.wavAudio
audio/wav
WAV audio
.oggAudio
audio/ogg
OGG audio
.m4aAudio
audio/mp4
M4A audio
.flacAudio
audio/flac
FLAC lossless audio
.aacAudio
audio/aac
AAC audio
.webmAudio
audio/webm
WebM audio
.mp4Video
video/mp4
MP4 video
.webmVideo
video/webm
WebM video
.aviVideo
video/x-msvideo
AVI video
.movVideo
video/quicktime
QuickTime video
.mkvVideo
video/x-matroska
Matroska video
.wmvVideo
video/x-ms-wmv
Windows Media Video
.flvVideo
video/x-flv
Flash video
.m4vVideo
video/x-m4v
M4V video
.pdfDocument
application/pdf
PDF document
.docDocument
application/msword
Word document (legacy)
.docxDocument
application/vnd.openxmlformats-officedocument.wordprocessingml.document
Word document
.xlsDocument
application/vnd.ms-excel
Excel spreadsheet (legacy)
.xlsxDocument
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
Excel spreadsheet
.pptDocument
application/vnd.ms-powerpoint
PowerPoint (legacy)
.pptxDocument
application/vnd.openxmlformats-officedocument.presentationml.presentation
PowerPoint presentation
.odtDocument
application/vnd.oasis.opendocument.text
OpenDocument text
.odsDocument
application/vnd.oasis.opendocument.spreadsheet
OpenDocument spreadsheet
.zipArchive
application/zip
ZIP archive
.rarArchive
application/vnd.rar
RAR archive
.7zArchive
application/x-7z-compressed
7-Zip archive
.tarArchive
application/x-tar
Tar archive
.gzArchive
application/gzip
Gzip compressed
.bz2Archive
application/x-bzip2
Bzip2 compressed
.woffFont
font/woff
Web Open Font Format
.woff2Font
font/woff2
Web Open Font Format 2
.ttfFont
font/ttf
TrueType font
.otfFont
font/otf
OpenType font
.eotFont
application/vnd.ms-fontobject
Embedded OpenType
.pyCode
text/x-python
Python script
.rbCode
text/x-ruby
Ruby script
.phpCode
application/x-php
PHP script
.javaCode
text/x-java-source
Java source
.goCode
text/x-go
Go source
.rsCode
text/x-rust
Rust source
.cCode
text/x-c
C source
.cppCode
text/x-c++
C++ source
.hCode
text/x-c
C/C++ header
.shCode
application/x-sh
Shell script
.yamlData
text/yaml
YAML data
.ymlData
text/yaml
YAML data
.tomlData
application/toml
TOML config
.sqlData
application/sql
SQL script
.wasmWeb
application/wasm
WebAssembly binary
.mapWeb
application/json
Source map
.exeBinary
application/x-msdownload
Windows executable
.dmgBinary
application/x-apple-diskimage
Mac disk image
.apkBinary
application/vnd.android.package-archive
Android package
.ipaBinary
application/x-itunes-ipa
iOS app package
.debBinary
application/x-deb
Debian package
.rpmBinary
application/x-rpm
RPM package

Common Use Cases

HTTP Content-Type Header:
Content-Type: application/json
HTML Accept Attribute:
<input accept="image/*">
Express.js Response:
res.type('application/pdf')
Fetch API:
headers: {'Content-Type': 'text/html'}