Set method and URL
Pick the HTTP method and enter the endpoint you want to call.
Fill in your request visually and get a ready-to-run curl command — built locally in your browser, nothing is sent anywhere.
Pick the HTTP method and enter the endpoint you want to call.
Add as many headers as you need, a JSON body and optional Bearer or Basic auth.
The curl command updates live and is ready to paste into any terminal.
No. It only assembles the curl command text locally in your browser; nothing is sent over the network.
Yes. Add as many header rows as you need and each becomes its own -H flag.
Choosing Bearer adds an Authorization header with your token. Choosing Basic adds the -u flag with your username and password.