What is MIME type lookup and why do developers need it?
MIME types (also called media types) label bytes: application/json for JSON APIs, text/csv for spreadsheets, image/webp for modern images, and hundreds of others registered with IANA or de facto in frameworks. Teams search for MIME type by extension when they set Content-Type headers, validate uploads, or write OpenAPI content blocks. Reverse lookup—finding extensions for a Content-Type string—helps when you inherit a header without sample filenames.
Keywords that match this page include extension to MIME, Content-Type lookup, media type finder, API upload MIME, and multipart form data type. The catalog focuses on formats common in web, mobile, and API development—not every experimental vendor type is listed.
How to use this MIME type lookup (step by step)
- Enter a filename or path (for example
dist/bundle.js), a bare extension likewasmor.yaml, or a full MIME type for reverse lookup. Compound suffixes such as.tar.gzare recognized before the final segment alone. - Click the copy icon next to the primary MIME type or extension list to paste into headers, tickets, or OpenAPI YAML. Use Copy list when multiple extensions share one type.
- Optional: use Upload file to load a local file name into the field and read
File.typefrom the browser. Compare it with the catalog when debugging mismatches between client and server. - When you need to inspect or format API payloads after choosing types, use the API response formatter or JSON formatter. For OpenAPI specs, open the OpenAPI / Swagger viewer.
Content-Type headers, uploads, and API contracts
HTTP uses Content-Type to describe request and response bodies. For multipart/form-data, each part can carry its own type. CDNs and object stores often infer or override types from extensions or magic bytes—your lookup here is a starting point, not a replacement for server configuration. For rate limits and quotas after you ship the API, see the API rate limit calculator.
Privacy
Lookup runs in your browser. The upload button reads metadata (name, size, reported type) only; file contents are not sent to our servers for this page.
Related API developer toolbox tools
Browse the full API developer toolbox section on the home page. Highlights:
- HTTP Request Builder — Test, document, and debug APIs without leaving the browser—pick method, headers, and body, then send with fetch.
- API Response Formatter — Paste any JSON or XML API response: pretty-print, validate, and explore a collapsible tree view.
- OpenAPI / Swagger Viewer — Paste OpenAPI in YAML or JSON and browse interactive docs—paths, schemas, and examples in one place.
- Webhook Payload Tester — Practice webhook debugging client-side: log sample POST bodies locally (e.g. localStorage) when a public capture URL is not available.
- HTTP Status Code Reference — Search HTTP status codes with plain-English meanings, typical causes, and what to do next.
- OAuth 2.0 Flow Visualizer — Walk through the authorization code flow step by step with interactive fields and diagrams.
- API Rate Limit Calculator — Given X requests per minute and a daily budget of Y calls, see pacing and when you hit the wall.