keecode logokeecode
Home / MIME Types / application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

Excel (OOXML)

Application
.xlsx

MIME Type

Media Type

application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

File Extension

.xlsx

Usage Examples

HTTP Response Header

Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

HTML Link Tag

<link rel="stylesheet" type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" href="style.css">

JavaScript Fetch API

fetch('/api/data', {
  headers: {
    'Content-Type': 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'
  }
})

Express.js (Node.js)

res.setHeader('Content-Type', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
res.send(data);