HTTP header Content-Length

The Content-Length header indicates the size of the message body, in bytes, sent to the recipient.

Content-Length: <length>
The length in decimal number of octets.

Examples

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 473


POST /submit HTTP/1.1
Host: example.com
Content-Type: application/x-www-form-urlencoded
Content-Length: 27

field=value&other=something