http header
Sec-CH-UA-Model header
Limited availabilitySecure context
The HTTP Sec-CH-UA-Model request header is a user agent client hint which indicates the device model on which the browser is running.
| Header type | [Request header](https://developer.mozilla.org/en-US/docs/Glossary/Request%20header), Client hint |
|---|---|
| [Forbidden request header](https://developer.mozilla.org/en-US/docs/Glossary/Forbidden%20request%20header) | Yes (Sec- prefix) |
Syntax
Sec-CH-UA-Model: <device-version>
Directives
<device-version>- : A string containing the device version. For example “Pixel 3”.
Examples
Using Sec-CH-UA-Model
A server requests the Sec-CH-UA-Model header by including Accept-CH in a response to any request from the client, using the name of the desired header as a token:
HTTP/1.1 200 OK
Accept-CH: Sec-CH-UA-Model
The client may choose to provide the hint, and add the Sec-CH-UA-Model header to subsequent requests.
For example, on mobile phone the client might add the header as shown:
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: ?1
Sec-CH-UA-Platform: "Android"
Sec-CH-UA-Bitness: "64"
Sec-CH-UA-Model: "Pixel 3 XL"
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
- Client hints
- User-Agent Client Hints API
Accept-CH- HTTP Caching: Vary and
Varyheader - Improving user privacy and developer experience with User-Agent Client Hints (developer.chrome.com)