What is Conditional GET (ETag)?
Conditional GET (ETag) is an HTTP mechanism that allows a client to ask the server for a resource only if it has changed since the last fetch. By sending an If-None-Match header with a previously cached entity tag (ETag), scrapers can receive a lightweight 304 Not Modified response instead of downloading the full payload again. For high-frequency polling pipelines, it's the difference between saturating your proxy bandwidth and running a highly efficient, near-real-time synchronization loop.