6 min read
2026-02-22
MIME (Multipurpose Internet Mail Extensions) is a standard for determining the content type of files on the Internet. Every file transferred over HTTP is accompanied by a Content-Type header.
Format: `type/subtype`, for example `text/html`, `application/json`, `image/png`.
| Category | Examples | Description |
|---|---|---|
| text | text/html, text/css | Text files |
| image | image/png, image/jpeg | Images |
| application | application/json | Application Data |
| audio | audio/mpeg, audio/ogg | Audio files |
| video | video/mp4, video/webm | Video files |
| multipart | multipart/form-data | Composite Data |
Correct delivery of files by the server
Correct parsing of API responses
Setting up file downloads
Filtering file types in forms
Find the MIME type by file extension, or vice versa - the extension by MIME type.
See also: HTTP status codes, JSON Formatter, Cron generator