What HTTP headers are sent by my browser?

# Header Name Header Value
1 GET /index.html HTTP/1.1
2 Host hdr.thatiuse.com
Specifies the host name of the server (for virtual hosting), and the TCP port number on which the server is listening. The port number may be omitted if the port is the standard port for the service requested. Mandatory since HTTP/1.1. If the request is generated directly in HTTP/2, it should not be used.
3 Cookie language=en; HandLtestDomainNameServer=HandLtestDomainValueServer
An HTTP cookie previously sent by the server with "Set-Cookie".
4 Referer http://hdr.thatiuse.com/
Referrer means the address (URI) of the previous web page from which a link to the currently requested page was followed.
5 Accept-Encoding gzip, br, zstd, deflate
Specifies which data format tranformations (content encodings), such as compression mechanisms, are acceptable for the response and to assign preferences to them. See HTTP compression.
6 User-Agent Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Contains information about the user agent (client) originating the request
7 Accept */*
Specifies which Internet media types (Content-Types) are acceptable for the response and to assign preferences to them. See Content negotiation.
8 Content-Length
Indicates the size (in bytes) of the entity-body that is sent.
9 Content-Type
Specifies the Internet media type (MIME type) of the entity-body that is sent (used with POST and PUT requests). Often includes a charset parameter specifying the character encoding.
Raw HTTP headers (.txt)