Search MIME types by file extension, content type, or description. Essential for HTTP headers and file handling.
Extensions: .txt
Plain text file
Extensions: .html, .htm
HTML document
Extensions: .css
CSS stylesheet
Extensions: .js, .mjs
JavaScript code
Extensions: .xml
XML document
Extensions: .csv
Comma-separated values
Extensions: .md, .markdown
Markdown document
Extensions: .json
JSON data
Extensions: .jsonld
JSON-LD linked data
Extensions: .xml
XML data
Extensions: .yaml, .yml
YAML configuration
Extensions: .jpg, .jpeg
JPEG image
Search by MIME type, file extension, or content type to find the right MIME type
MIME (Multipurpose Internet Mail Extensions) type is a standard identifier for file formats and content types on the internet. Format is 'type/subtype', like 'image/jpeg' or 'application/json'. Browsers and servers use MIME types to determine how to handle files and content.
Type the file extension (like '.pdf', '.jpg', '.mp4') in the search box. The tool will show you the corresponding MIME type (e.g., 'application/pdf', 'image/jpeg', 'video/mp4') that you should use in Content-Type headers or file upload validation.
Use 'application/json' for JSON data. This is the standard Content-Type for REST APIs, AJAX requests, and JSON file downloads. Older applications sometimes used 'text/json', but 'application/json' is the modern, RFC-compliant choice.
The correct MIME type is 'image/jpeg'. While some systems accept 'image/jpg', 'image/jpeg' is the official IANA-registered MIME type. Both .jpg and .jpeg file extensions use the 'image/jpeg' MIME type.
MIME types help validate uploads by checking if the file's Content-Type matches allowed types. For security, always validate both the MIME type sent by the browser AND the actual file content, as MIME types can be spoofed. Use a whitelist of allowed MIME types for your upload forms.
Common video MIME types: 'video/mp4' for MP4, 'video/webm' for WebM, 'video/ogg' for Ogg, 'video/quicktime' for MOV. For HTML5 video, MP4 (video/mp4) has the best browser support. Always specify the correct MIME type in Content-Type headers for proper browser handling.
MIME types are essential for proper file handling in web applications. This lookup tool provides a quick reference for developers working with HTTP headers, file uploads, and content serving.