Build cURL commands with a visual form. Add method, URL, headers, body, and auth — get a ready-to-run cURL command.
curl \ -H "Authorization: Bearer your-token-here" \ -H "Content-Type: application/json" \ "https://api.example.com/users"
More free utilities you might find useful
Quick answers to common questions
cURL is a command-line tool for transferring data using various protocols. It's the most common way developers test APIs, debug HTTP requests, and script web interactions.
curl -X POST https://api.example.com/endpoint -H "Content-Type: application/json" -d '{"key": "value"}'. The -d flag sends data, -H adds headers.
For Bearer token: -H "Authorization: Bearer YOUR_TOKEN". For basic auth: -u username:password. For API key: -H "X-API-Key: YOUR_KEY".
Your data is processed entirely in your browser. Nothing is sent to any server.