Referrer-Policy Header Builder
NetworkBuild a Referrer-Policy header value from one or more policy tokens with a plain-English explanation of each and warnings for risky choices like unsafe-url
Pick one or more Referrer-Policy tokens and get back the assembled header value, an equivalent meta tag, and a plain-English explanation of exactly what gets sent to a destination site under each token: the full URL, just the origin, or nothing at all, and whether it still leaks on an HTTPS to HTTP downgrade. Multiple tokens form a fallback chain per the Referrer Policy spec, useful for supporting older browsers while defaulting newer ones to a stricter policy. It is pure string assembly and lookup against the eight standard policy values, it never inspects real request traffic or your site's actual referrer behavior.
How to use Referrer-Policy Header Builder
- 1.Pick a preset or select a policy value from the dropdown and add it to the chain.
- 2.Add additional fallback values if you need older-browser compatibility, in priority order.
- 3.Copy the generated Referrer-Policy header or the equivalent meta tag into your server config or HTML.
Frequently asked questions
Use via API, SDK, or MCP
cURL# Free: 1,000 req/day · Pro: 10,000 req/day
curl -X POST https://api.utilix.tech/v1/tools/referrer-policy-builder \
-H "Authorization: Bearer utx_live_..." \
-H "Content-Type: application/json" \
-d '{"policies":"strict-origin-when-cross-origin"}'Get an API key from your dashboard · Full API docs →