http header
Sec-Fetch-Dest header
The HTTP Sec-Fetch-Dest fetch metadata request header indicates the request’s destination.
That is the initiator of the original fetch request, which is where (and how) the fetched data will be used.
This allows servers to determine whether to service a request based on whether it is appropriate for how it is expected to be used. For example, a request with an audio destination should request audio data, not some other type of resource (for example, a document that includes sensitive user information).
| Header type | [Fetch Metadata Request Header](https://developer.mozilla.org/en-US/docs/Glossary/Fetch%20Metadata%20Request%20Header) |
|---|---|
| [Forbidden request header](https://developer.mozilla.org/en-US/docs/Glossary/Forbidden%20request%20header) | Yes (Sec- prefix) |
| [CORS-safelisted request header](https://developer.mozilla.org/en-US/docs/Glossary/CORS-safelisted%20request%20header) | No |
Syntax
Sec-Fetch-Dest: audio
Sec-Fetch-Dest: audioworklet
Sec-Fetch-Dest: document
Sec-Fetch-Dest: embed
Sec-Fetch-Dest: empty
Sec-Fetch-Dest: fencedframe
Sec-Fetch-Dest: font
Sec-Fetch-Dest: frame
Sec-Fetch-Dest: iframe
Sec-Fetch-Dest: image
Sec-Fetch-Dest: json
Sec-Fetch-Dest: manifest
Sec-Fetch-Dest: object
Sec-Fetch-Dest: paintworklet
Sec-Fetch-Dest: report
Sec-Fetch-Dest: script
Sec-Fetch-Dest: serviceworker
Sec-Fetch-Dest: sharedworker
Sec-Fetch-Dest: style
Sec-Fetch-Dest: track
Sec-Fetch-Dest: video
Sec-Fetch-Dest: webidentity
Sec-Fetch-Dest: worker
Sec-Fetch-Dest: xslt
Servers should ignore this header if it contains any other value.
Directives
[!NOTE] These directives correspond to the values returned by
destination.
audio- : The destination is audio data. This might originate from an HTML
<audio>tag.
- : The destination is audio data. This might originate from an HTML
audioworklet- : The destination is data being fetched for use by an audio worklet. This might originate from a call to
audioWorklet.addModule().
- : The destination is data being fetched for use by an audio worklet. This might originate from a call to
document- : The destination is a document (HTML or XML), and the request is the result of a user-initiated top-level navigation (e.g., resulting from a user clicking a link).
embed- : The destination is embedded content. This might originate from an HTML
<embed>tag.
- : The destination is embedded content. This might originate from an HTML
empty- : The destination is the empty string. This is used for destinations that do not have their own value. For example:
fetch(),sendBeacon(),EventSource,XMLHttpRequest,WebSocket, etc.
- : The destination is the empty string. This is used for destinations that do not have their own value. For example:
fencedframeExperimental- : The destination is a fenced frame.
font- : The destination is a font. This might originate from CSS
@font-face.
- : The destination is a font. This might originate from CSS
frame- : The destination is a frame. This might originate from an HTML
<frame>tag.
- : The destination is a frame. This might originate from an HTML
iframe- : The destination is an iframe. This might originate from an HTML
<iframe>tag.
- : The destination is an iframe. This might originate from an HTML
image- : The destination is an image. This might originate from an HTML
<img>, SVG<image>, CSSbackground-image, CSScursor, CSSlist-style-image, etc.
- : The destination is an image. This might originate from an HTML
json- : The destination is JSON. This might originate from importing a module from JavaScript with the
type: "json"attribute.
- : The destination is JSON. This might originate from importing a module from JavaScript with the
manifest- : The destination is a manifest. This might originate from an HTML <link rel=manifest>.
object- : The destination is an object. This might originate from an HTML
<object>tag.
- : The destination is an object. This might originate from an HTML
paintworklet- : The destination is a paint worklet. This might originate from a call to
CSS.PaintWorklet.addModule().
- : The destination is a paint worklet. This might originate from a call to
report- : The destination is a report (for example, a content security policy report).
script- : The destination is a script. This might originate from an HTML
<script>tag or a call toimportScripts().
- : The destination is a script. This might originate from an HTML
serviceworker- : The destination is a service worker. This might originate from a call to
navigator.serviceWorker.register().
- : The destination is a service worker. This might originate from a call to
sharedworker- : The destination is a shared worker. This might originate from a
SharedWorker.
- : The destination is a shared worker. This might originate from a
style- : The destination is a style. This might originate from an HTML
<<link rel=stylesheet>>or a CSS@import.
- : The destination is a style. This might originate from an HTML
track- : The destination is an HTML text track. This might originate from an HTML
<track>tag.
- : The destination is an HTML text track. This might originate from an HTML
video- : The destination is video data. This might originate from an HTML
<video>tag.
- : The destination is video data. This might originate from an HTML
webidentityworker- : The destination is a
Worker.
- : The destination is a
xslt- : The destination is an XSLT transform.
Examples
Using Sec-Fetch-Dest
A cross-site request generated by an <img> element would result in a request with the following HTTP request headers (note that the destination is image):
Sec-Fetch-Dest: image
Sec-Fetch-Mode: no-cors
Sec-Fetch-Site: cross-site
Specifications
Browser compatibility
See also
Sec-Fetch-Mode,Sec-Fetch-Site,Sec-Fetch-Userfetch metadata request headers- Protect your resources from web attacks with Fetch Metadata (web.dev)
- Fetch Metadata Request Headers playground (secmetadata.appspot.com)