Developer / Debugging
MIME Type Lookup
Look up common MIME types by file extension or reverse-lookup extensions from a MIME value directly in your browser. Find the right `Content-Type` for an extension or reverse-lookup which file types commonly use a MIME value.
2
Matches
1
Categories
Ext
Lookup mode
application/json
Top result
Loaded JSON example
Quick notes
Look up by extension like `.svg` or by MIME type like `application/json`.
Full filenames like `invoice.pdf` or `logo.final.svg` are accepted and the extension will be extracted automatically.
This is handy when you need upload validation, server headers, S3 metadata, or download responses.
Some MIME types map to more than one extension, so reverse lookups help spot alternatives.
Copy-ready `Content-Type` snippets save a trip back to old server configs or docs.
Primary match
Extension: .json
MIME: application/json
Category: Data
Use case: APIs, configs
Transfer: Usually safe as text payload
Category view
Content-Type header
Content-Type: application/json
JSON preview
[
{
"extension": "json",
"mimeType": "application/json",
"category": "Data",
"description": "JSON document",
"commonUse": "APIs, configs"
},
{
"extension": "map",
"mimeType": "application/json",
"category": "Data",
"description": "Source map",
"commonUse": "Build artifacts"
}
]accept attribute
.json,.map
Detected input mode
Extension-style lookup detected
Search seed: .json
Matched records
.json
application/json
JSON document
APIs, configs
.map
application/json
Source map
Build artifacts
Express snippet
res.setHeader("Content-Type", "application/json");nginx types snippet
types {
application/json json;
}Practical signals
Why this gets reused
Developers keep checking MIME types while building uploads, API responses, static asset routes, and storage metadata.
One correct `Content-Type` often fixes download behavior, preview rendering, or browser caching immediately.
Reverse lookup from MIME back to extensions makes the tool useful in both debugging and implementation work.
Strong first-use cases
Checking the right `Content-Type` for an uploaded or downloaded file.
Looking up which extensions belong to a MIME value returned by an API or CDN.
Copying a clean header line into server config, edge functions, or app code.