GlossaryProtocolsAdvanced

QUIC

QUIC is a modern transport protocol that sends data over UDP with built-in encryption and faster connection setup. It is the foundation that HTTP/3 is built on.

Last updated June 8, 2026

Definition

QUIC (Quick UDP Internet Connections) is a transport-layer protocol originally developed by Google and now standardized by the IETF. It is designed to replace the traditional TCP plus TLS stack with something faster, more secure, and better suited to modern, mobile-first networks.

How QUIC works

QUIC runs on UDP and merges transport and encryption into one layer, so a secure connection can be established in as little as one round trip (or zero on resumption). It supports independent multiplexed streams, eliminating the head-of-line blocking that slows TCP, and uses a connection ID so sessions survive IP or network changes.

Why it matters for scraping and privacy

  • QUIC is the transport beneath HTTP/3, so understanding it is key to handling next-generation web traffic.
  • Because it is encrypted end to end, QUIC is harder for middleboxes to inspect, affecting how some VPN and proxy setups treat the traffic.
  • Scraping tools and proxies that only speak TCP cannot intercept or forward QUIC without extra support.

QUIC represents a fundamental shift in how the web moves data, and its encrypted, UDP-based design has growing implications for both performance and traffic analysis.

Examples

1

Chrome negotiating QUIC with Google services for faster loads

2

HTTP/3 using QUIC as its underlying transport

3

VPNs choosing whether to allow or block UDP-based QUIC traffic

Common Use Cases

Building scrapers that support HTTP/3 over QUIC
Reducing latency on mobile and high-loss networks
Understanding why some proxies cannot inspect QUIC traffic
Analyzing encrypted transport behavior for fingerprinting

Frequently Asked Questions

No. QUIC is the transport protocol, while HTTP/3 is the application protocol that runs on top of QUIC. HTTP/3 needs QUIC, but QUIC can carry other protocols too.
UDP lets QUIC implement its own faster, encrypted connection logic without the latency of TCP handshakes and head-of-line blocking, improving performance especially on mobile.
Yes. Some networks block UDP port 443 to force traffic back to TCP-based HTTP/2, which is easier to inspect or filter.