What is Content-Type Header?
Content-Type Header is an HTTP entity header that tells the receiving client or server exactly what media type is being transmitted in the payload body. For scraping pipelines, it dictates how the fetch layer parses the incoming bytes—whether to decode them as UTF-8 HTML, parse them as a JSON object, or stream them as a binary blob. Getting it wrong, or trusting a server that lies about it, leads to silent encoding corruption and pipeline crashes.