ApplicationBinary

application/vnd.oasis.opendocument.spreadsheet

OpenDocument Spreadsheet

Reference for application/vnd.oasis.opendocument.spreadsheet, the MIME type for ODF spreadsheets used by LibreOffice Calc.

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: .ods

HTTP Content-Type Header

HTTP Header
Content-Type: application/vnd.oasis.opendocument.spreadsheet

Associated File Extensions

.ods

Quick Facts

MIME Typeapplication/vnd.oasis.opendocument.spreadsheet
CategoryApplication
TypeBinary
Extensions.ods

Common Usage

ODS is the open standard spreadsheet format used by LibreOffice Calc and Apache OpenOffice Calc. Like ODT, it is ISO-standardized and used by organizations that prefer open formats over proprietary alternatives like Excel.

Code Examples

HTML
<!-- Link or embed with explicit type -->
<link rel="stylesheet" href="file.ods" type="application/vnd.oasis.opendocument.spreadsheet">

<!-- Or for script/media elements -->
<script type="application/vnd.oasis.opendocument.spreadsheet" src="file.ods"></script>
Node.js
// Express.js
app.get('/file', (req, res) => {
  res.type('application/vnd.oasis.opendocument.spreadsheet');
  res.send(data);
});

// Node.js http
res.writeHead(200, { 'Content-Type': 'application/vnd.oasis.opendocument.spreadsheet' });
nginx
# nginx.conf — add to types block or use default
types {
    application/vnd.oasis.opendocument.spreadsheet  ods;
}

# Or set for a specific location
location /api/ {
    default_type application/vnd.oasis.opendocument.spreadsheet;
}

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.