Curl playground
Choose a typical use case or try your own:
methods:
get
head
post
any
response:
code
headers
body
vars
post:
data
file
json
urlencode
put:
file
data
http:
redirects
ranges
cond:time
cond:etag
multipart
cookies
transfers:
downloads
uploads
dns
limits
timeouts
retries
urls:
params
multiple
globbing
state reset
more:
verbose
trace
progress
auth
config
status
# curl supports all HTTP methods. # GET is the default one, requires no options: curl http://httpbingo.org/get # Httpbin is an HTTP debugging service. # Its /get handle returns all the details of the # incoming GET request as a JSON object. So the # JSON you see in the response comes from Httpbin, # not from curl itself.
curl is the ultimate tool for internet transfers.