application/x-tar
TAR archive
Application
.tar
MIME Type
Media Type
application/x-tar
File Extension
.tar
Usage Examples
HTTP Response Header
Content-Type: application/x-tar
HTML Link Tag
<link rel="stylesheet" type="application/x-tar" href="style.css">
JavaScript Fetch API
fetch('/api/data', {
headers: {
'Content-Type': 'application/x-tar'
}
})Express.js (Node.js)
res.setHeader('Content-Type', 'application/x-tar');
res.send(data);When to Use This MIME Type
Application MIME types are used for structured data and binary files. The Content-Type header helps browsers and APIs process the data correctly.