This is a searchable reference that maps common file extensions to the correct MIME type (Content-Type). It is for web developers and server admins who need the exact header value for a given file format.
How it works
A MIME type (media type) is a label like image/png or application/json in the form type/subtype. Servers send it in the Content-Type header so browsers and clients know how to handle the response — render it, play it, or download it. The reference lists each extension with its registered type and a short description, plus a one-click copy button. Type in the search box to filter by extension, type or description.
Example
To serve a WebP image correctly, send:
Content-Type: image/webp
Using the wrong type — for example labelling JSON as text/plain — can stop a browser or API client from parsing the response as intended.
| Extension | MIME type |
|---|---|
| .json | application/json |
| .png | image/png |
| application/pdf | |
| .woff2 | font/woff2 |
| .mp4 | video/mp4 |
| (unknown binary) | application/octet-stream |
Everything runs in your browser; nothing is uploaded.