cURL to Native Code

Paste a curl from DevTools or a runbook. Get native clients for the languages those converters usually skip: Rust (reqwest), Go (net/http), C# (HttpClient), Swift (URLSession), and PowerShell.

cURL → native code

Rust reqwest, Go net/http, C# HttpClient, Swift URLSession, PowerShell. Not another fetch() toy.

Heuristic parser for common DevTools curl. Multipart (-F) and @file bodies need a hand edit. Treat pasted tokens as live.

Why fetch() is not enough

Most “curl to code” toys stop at fetch() and requests. That is the easy half of the internet. The other half is a refund service in Go, a Mac client in Swift, a Windows runbook in PowerShell, or a Rust worker that already depends on reqwest.

This page parses the common curl you actually copy: -X, -H, --data / --data-raw / --json, -u, and a URL. Multipart (-F) and file bodies (@payload.json) are called out, not silently turned into the wrong string.

Review generated secrets the same way you review the original command. Closing the tab is the cleanup.