Skip to main content
ToolStack

cURL Converter

Convert cURL commands to JavaScript fetch, axios, Python requests, Node.js, or PowerShell. Free, private, runs in your browser.

fetch('https://api.example.com/users', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer abc123',
  },
  body: '{"name":"Ada","role":"admin"}',
})
Parsed request
MethodPOST
URLhttps://api.example.com/users
Header — Content-Typeapplication/json
Header — AuthorizationBearer abc123
Body{"name":"Ada","role":"admin"}