Online curl command line builder
Easily generate
curl
command lines to test your new shining API
GET
POST
PUT
PATCH
DELETE
URL
Body
Header key
Header value
remove
add custom header
JSON Content-Type
Accept self-signed certs
Verbose
here you are!
curl{{verbose ? " -v" : ""}}{{insecure ? " --insecure" : ""}}{{ method ? " -X" + method : ""}}{{ getHeadersString() }}{{json ? ' -H "Content-type: application/json"' : ""}}{{ data ? " -d '"+data+"'" : "" }} {{ endpoint ? "'"+endpoint+"'" : '' }}