What is HTTP Response?
HTTP response is the payload a server returns after a client issues a request. It consists of a status line, headers, and an optional body containing the actual data — HTML, JSON, or binary. In scraping, the response is the raw material of your pipeline. If the headers indicate a cache hit but the body is a silent CAPTCHA challenge, your extraction layer will fail. Parsing the response correctly is the baseline for data quality.