Mentransfer data dari atau ke server. Mendukung sebagian besar protokol, termasuk HTTP, FTP, dan POP3. Informasi lebih lanjut: https://curl.se.
curl {{http://contoh.com}} -o {{namafile}}
curl -O {{http://contoh.com/namafile}}
curl -O -L -C - {{http://contoh.com/filename}}
application/x-www-form-urlencoded
). Gunakan -d @file_name
atau -d @'-'
untuk membaca dari STDIN:curl -d {{'name=bob'}} {{http://contoh.com/form}}
curl -H {{'X-My-Header: 123'}} -X {{PUT}} {{http://contoh.com}}
curl -d {{'{"name":"bob"}'}} -H {{'Content-Type: application/json'}} {{http://contoh.com/users/1234}}
curl -u myusername:mypassword {{http://contoh.com}}
curl --cert {{client.pem}} --key {{key.pem}} --insecure {{https://contoh.com}}