ApplicationBinary
application/zip
ZIP Archive
Reference for application/zip, the MIME type for ZIP compressed archives used for bundling and distributing multiple files.
MIME Type Detector
Drop a file to detect its MIME type — no upload, runs in your browser
📄
Drop any file here or click to choose
Expected extensions: .zip
HTTP Content-Type Header
HTTP Header
Content-Type: application/zipAssociated File Extensions
.zip
Quick Facts
| MIME Type | application/zip |
| Category | Application |
| Type | Binary |
| Extensions | .zip |
Common Usage
ZIP is the most widely supported archive format across all operating systems. It is used for software distribution, email attachments, backup archives, EPUB ebooks (which are ZIP files internally), and Office Open XML documents (.docx, .xlsx, .pptx).
Code Examples
HTML
<!-- Link or embed with explicit type -->
<link rel="stylesheet" href="file.zip" type="application/zip">
<!-- Or for script/media elements -->
<script type="application/zip" src="file.zip"></script>Node.js
// Express.js
app.get('/file', (req, res) => {
res.type('application/zip');
res.send(data);
});
// Node.js http
res.writeHead(200, { 'Content-Type': 'application/zip' });nginx
# nginx.conf — add to types block or use default
types {
application/zip zip;
}
# Or set for a specific location
location /api/ {
default_type application/zip;
}Related MIME Types
More Application MIME Types
Other application types in the Application family
Related Tools
Explore More MIME Types
Browse our complete reference of 185 MIME types with usage examples, HTTP headers, and code snippets.