keecode logokeecode
Home / MIME Types / application/vnd.ms-excel

application/vnd.ms-excel

Microsoft Excel

Application
.xls

MIME Type

Media Type

application/vnd.ms-excel

File Extension

.xls

Usage Examples

HTTP Response Header

Content-Type: application/vnd.ms-excel

HTML Link Tag

<link rel="stylesheet" type="application/vnd.ms-excel" href="style.css">

JavaScript Fetch API

fetch('/api/data', {
  headers: {
    'Content-Type': 'application/vnd.ms-excel'
  }
})

Express.js (Node.js)

res.setHeader('Content-Type', 'application/vnd.ms-excel');
res.send(data);