Skip to content
Skip to content
← All HTTP Headers
Response

Transfer-Encoding

Specifies the encoding used to transfer the response body, typically chunked.

Syntax

Transfer-Encoding: chunked | compress | deflate | gzip

Example

Transfer-Encoding: chunked

Description

Transfer-Encoding specifies how the payload is encoded for transfer. Most common value: chunked.

Chunked encoding sends data in parts, useful for dynamically generated content where total length is unknown.

Not used in HTTP/2 — the protocol has its own framing mechanism.

Check if your website sends this header correctly

Check your headers →

Related Headers