multipart/byteranges
Multipart byte ranges
Multipart
MIME Type
Media Type
multipart/byteranges
Usage Examples
HTTP Response Header
Content-Type: multipart/byteranges
HTML Link Tag
<link rel="stylesheet" type="multipart/byteranges" href="style.css">
JavaScript Fetch API
fetch('/api/data', {
headers: {
'Content-Type': 'multipart/byteranges'
}
})Express.js (Node.js)
res.setHeader('Content-Type', 'multipart/byteranges');
res.send(data);When to Use This MIME Type
Multipart MIME types are used for forms and complex data structures with multiple parts.