OrionDesk
Ctrl K
Sign in
FREE TOOL · NO SIGN-UP
cURL to code converter
Paste a cURL command and generate fetch, axios or Python requests code.
cURL command
curl -X POST https://api.example.com/users \ -H "Content-Type: application/json" \ -d '{"name":"Ada"}'
Generated code
fetch
axios
Python
node-fetch
Copy
const res = await fetch("https://api.example.com/users", { method: "POST", headers: { "Content-Type": "application/json" }, body: "{\"name\":\"Ada\"}", }); const data = await res.text(); console.log(res.status, data);
Runs 100% in your browser — files never leave your device.
More Developer tools
API request tester
Webhook tester & inspector
GraphQL query tester
HTTP status code reference
Base64 encoder / decoder
URL encoder / decoder
Feedback