Transfers data from or to a server. Supports most protocols including HTTP, FTP, POP3.
curl {{http://example.com}} -o {{filename}}
curl -O {{http://example.com/filename}}
curl -O -L -C - {{http://example.com/filename}}
curl -d {{'name=bob'}} {{http://example.com/form}}
curl -d {{'{"name":"bob"}'}} -X {{PUT}} -H {{'Content-Type: application/json'}} {{http://example.com/users/1234}}
curl -u myusername:mypassword {{http://example.com}}
curl -v -key {{key.pem}} -cacert {{ca.pem}} -cert {{client.pem}} -k {{https://example.com}}