What is Conditional GET (ETag)?
A Conditional GET (ETag) is an HTTP mechanism that allows a client to ask a server for a resource only if it has changed since the last fetch. By passing an entity tag (ETag) or a Last-Modified timestamp in the request headers, the server can return a lightweight 304 Not Modified response instead of the full payload. For scraping pipelines, mastering conditional requests is the difference between saturating your proxy bandwidth with redundant HTML and running a highly efficient, incremental data sync.