Web
HTTP/3 Test
Test HTTP/3 support
Tool features
4 checks
HTTP/3 Detection
Check if your website supports HTTP/3 (QUIC) protocol
Performance Benefits
HTTP/3 provides faster connection establishment and improved performance
Modern Protocol
Verify support for the latest HTTP protocol standard
Alt-Svc Analysis
Analyze Alt-Svc headers to detect HTTP/3 availability
What is HTTP/3 & how it works
HTTP/3 is the latest version of HTTP. Instead of running over TCP, it runs over QUIC — a transport built on UDP that combines the connection and TLS handshakes into one round-trip and eliminates the head-of-line blocking that can stall HTTP/2 on lossy networks.
Browsers discover HTTP/3 through an Alt-Svc response header advertising an h3 endpoint, then switch to QUIC on UDP port 443 for later requests. This test reads the Alt-Svc header, checks whether h3 and QUIC are advertised, and reports which protocols the host actually offers.
QUIC
The UDP-based transport HTTP/3 runs on, with built-in TLS 1.3.
Alt-Svc
The response header that advertises an h3 endpoint to browsers.
0-RTT
QUIC can resume sessions with zero round-trips, cutting connection latency.
How to use this tool
1
Enter a domain
Type a domain name, e.g.
example.com — the host is probed over HTTPS.2
Run the test
Click Test HTTP/3 to fetch the response and inspect its Alt-Svc header for an h3 endpoint.
3
Review protocol support
See whether HTTP/3 and QUIC are advertised, alongside HTTP/1.1 and HTTP/2.
4
Read the handshake
Check the feature checks and raw handshake to confirm Alt-Svc, max-age and the negotiated protocol.
Related tools
4 tools
HTTP Header Checker
Analyze HTTP response headers for any website or URL with detailed header information
Secure Header Checker
Check security headers like CSP, HSTS, X-Frame-Options, and more with security scoring
HSTS Checker
Check HTTP Strict Transport Security (HSTS) header configuration and preload status
HTTP Status Checker
Check HTTP status codes and response details for any URL with detailed analysis
Frequently asked questions
5 Q&A
QUIC is the transport protocol HTTP/3 uses. Built on UDP with TLS 1.3 baked in, it merges the transport and encryption handshakes and handles packet loss per-stream, so one lost packet doesn't stall the whole connection.
A server advertises HTTP/3 with an Alt-Svc response header naming an h3 endpoint (e.g. Alt-Svc: h3=":443"). Browsers see it on a first HTTP/1.1 or HTTP/2 response, then upgrade to QUIC for subsequent requests.
Not immediately. Hosts typically offer HTTP/3 alongside HTTP/2 and HTTP/1.1, and clients that can't reach UDP/443 fall back automatically. This test reports support for all three.
Enable QUIC/HTTP/3 in your server or CDN (for example, the http3 listener in recent Nginx builds, or a toggle in Cloudflare) and ensure UDP port 443 is open. The server then adds the Alt-Svc header automatically.