Transfers data from or to a server. Supports most protocols including HTTP, FTP, POP.
curl "{{URL}}" -o {{filename}}
curl --data {{name=bob}} {{http://localhost/form}}
curl -X POST -H "Content-Type: application/json" -d {{'{"name":"bob"}'}} {{http://localhost/login}}
curl -X {{DELETE}} {{http://localhost/item/123}}
curl --head {{http://localhost}}
curl --header "{{X-MyHeader: 123}}" {{http://localhost}}
curl -u myusername:mypassword {{http://localhost}}