application/vnd.openxmlformats-officedocument.wordprocessingml.document
Word (OOXML)
Application
.docx
MIME Type
Media Type
application/vnd.openxmlformats-officedocument.wordprocessingml.document
File Extension
.docx
Usage Examples
HTTP Response Header
Content-Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document
HTML Link Tag
<link rel="stylesheet" type="application/vnd.openxmlformats-officedocument.wordprocessingml.document" href="style.css">
JavaScript Fetch API
fetch('/api/data', {
headers: {
'Content-Type': 'application/vnd.openxmlformats-officedocument.wordprocessingml.document'
}
})Express.js (Node.js)
res.setHeader('Content-Type', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document');
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.