http header
Via header
The Via request and response header is added by proxies, both forward and reverse.
It is used for tracking message forwards, avoiding request loops, and identifying the protocol capabilities of senders along the request/response chain.
| Header type | [Request header](https://developer.mozilla.org/en-US/docs/Glossary/Request%20header), [Response header](https://developer.mozilla.org/en-US/docs/Glossary/Response%20header) |
|---|---|
| [Forbidden request header](https://developer.mozilla.org/en-US/docs/Glossary/Forbidden%20request%20header) | Yes |
Syntax
Via: [<protocol-name>/]<protocol-version> <host>[:<port>]
Via: [<protocol-name>/]<protocol-version> <pseudonym>
Directives
<protocol-name>Optional- : The name of the protocol used, such as “HTTP”.
<protocol-version>- : The version of the protocol used, such as “1.1”.
<host>- : Public proxy URL and optional
<port>. If a host is not provided, then a<pseudonym>must be used.
- : Public proxy URL and optional
<pseudonym>- : Name/alias of an internal proxy.
If a pseudonym is not provided, then a
<host>must be used.
- : Name/alias of an internal proxy.
If a pseudonym is not provided, then a
Examples
Via: 1.1 vegur
Via: HTTP/1.1 GWA
Via: 1.0 fred, 1.1 p.example.net
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.