curl Command Examples

Transfers data from or to a server. Supports most protocols, including HTTP, HTTPS, FTP, SCP, etc. More information: https://curl.se/docs/manpage.html.

curl {{https://example.com}}

curl --location --dump-header - {{https://example.com}}

curl --remote-name {{https://example.com/filename.zip}}

curl -X POST --data {{'name=bob'}} {{http://example.com/form}}

curl -k --proxy {{http://127.0.0.1:8080}} --header {{'Authorization: Bearer token'}} --request {{GET|PUT|POST|DELETE|PATCH|...}} {{https://example.com}}

curl --data {{'{"name":"bob"}'}} --header {{'Content-Type: application/json'}} {{http://example.com/users/1234}}

curl --cert {{client.pem}} --key {{key.pem}} --insecure {{https://example.com}}

curl --verbose --resolve {{example.com}}:{{80}}:{{127.0.0.1}} {{http://example.com}}