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.
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
Chrome negotiating QUIC with Google services for faster loads
HTTP/3 using QUIC as its underlying transport
VPNs choosing whether to allow or block UDP-based QUIC traffic
Common Use Cases
Frequently Asked Questions
Keep Learning
All termsHTTP Proxy
An HTTP proxy is an intermediary server that forwards web (HTTP/HTTPS) requests on your behalf, able to read, cache and filter traffic at the application layer.
Read definitionVPN
A VPN (Virtual Private Network) encrypts all of your device's internet traffic and routes it through a remote server, hiding your IP and protecting data on untrusted networks.
Read definitionDNS (Domain Name System)
DNS is the internet's phonebook — it translates human-readable domain names like example.com into the numeric IP addresses computers use to connect.
Read definitionSSL/TLS
SSL/TLS is the encryption protocol that secures data in transit on the web — the 'S' in HTTPS — protecting it from eavesdropping and tampering.
Read definition