- Which target languages?
- JavaScript (fetch, axios), Python (requests, httpx), Go, Rust, Java (OkHttp), C#, Ruby, PHP, and Node.js. Covers the 10 most common HTTP client libraries.
- Does it handle authentication?
- Yes — Basic, Bearer, and custom `-H Authorization` headers all translate correctly. Stored in the code as inline strings; move to env vars in production.
- What about file uploads (-F)?
- Multipart form data translates per target language. File references become library-specific open/read calls — you'll need to adjust the file path.
- Will it preserve header casing?
- HTTP is case-insensitive; target libraries normalize differently. The output uses the library's conventional casing (not necessarily what you typed).