Yes, we can do this with tcpdump, but what if we need to see what API application uses?
strace – was the big opening for me. This is Jedi sword in the skillful hands.
strace -f -e trace=network chrome google.com >& log
And you will see all sequences of requests/responses from your app and even more. Just try =)