Open TCP socket:

exec 3<>/dev/tcp/example.org/80

Send a request:

echo -ne "GET / HTTP/1.1\r\nHost: example.org\r\n\r\n" >&3

Get a response:

cat <&3

Close the socket:

exec 3<&-

Keep in mind that this is just a Bash feature.