- Does it handle all cURL flags?
- Common flags: -H/--header, -d/--data, --data-raw, -X/--request, -u/--user, --form, -k/--insecure, -b/--cookie, -c, -L/--location, --compressed. Less common flags (--resolve, --cacert, multi-handle operations) are logged as unsupported.
- Can it convert in the other direction — code to cURL?
- This tool converts cURL to code only. For code to cURL, the API request builder tool has a 'copy as cURL' export button. Postman and Insomnia also export as cURL natively.
- How does it handle authentication in cURL commands?
- -u username:password generates HTTP Basic auth headers. --oauth2-bearer generates Authorization: Bearer headers. API key headers (-H 'X-API-Key: xxx') are passed through as literal headers in the generated code.