Back to Content

Sec-CH-UA-Platform-Version header

files/en-us/web/http/reference/headers/sec-ch-ua-platform-version/index.md

latest2.2 KB
Original Source

{{SeeCompatTable}}{{SecureContext_Header}}

The HTTP Sec-CH-UA-Platform-Version {{Glossary("request header")}} is a user agent client hint which provides the version of the operating system on which the user agent is running.

<table class="properties"> <tbody> <tr> <th scope="row">Header type</th> <td> {{Glossary("Request header")}}, <a href="/en-US/docs/Web/HTTP/Guides/Client_hints">Client hint</a> </td> </tr> <tr> <th scope="row">{{Glossary("Forbidden request header")}}</th> <td>Yes (<code>Sec-</code> prefix)</td> </tr> </tbody> </table>

Syntax

http
Sec-CH-UA-Platform-Version: <version>

Directives

  • <version>
    • : The version string typically contains the operating system version in a string, consisting of dot-separated major, minor and patch version numbers, for example "11.0.0". The version string on Linux is always empty.

Examples

Using Sec-CH-UA-Platform-Version

A server requests the Sec-CH-UA-Platform-Version header by including the {{HTTPHeader("Accept-CH")}} in a response to any request from the client, using the name of the desired header as a token:

http
HTTP/1.1 200 OK
Accept-CH: Sec-CH-UA-Platform-Version

The client may choose to provide the hint, and add the Sec-CH-UA-Platform-Version header to subsequent requests. For example, the following request headers might be sent from a browser running on Windows 10.

http
GET /my/page HTTP/1.1
Host: example.site

Sec-CH-UA: " Not A;Brand";v="99", "Chromium";v="96", "Google Chrome";v="96"
Sec-CH-UA-Mobile: ?0
Sec-CH-UA-Platform: "Windows"
Sec-CH-UA-Platform-Version: "10.0.0"

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also