API testing
🛰️ cURL → Browser Request
Turn a cURL snippet into an editable HTTP call—no Postman required. Great for quick JSON APIs and mobile-friendly testing.
Parse cURLEdit headers/bodySend requestCopy JSON
Send
Key
Value
Note: Some APIs block browser calls (CORS/auth). Use public/test endpoints for best results.
Tips for clean conversions
- Include the full URL in your cURL (including https://).
- Headers format:
Name: value(one per line). - Body stays empty for GET/HEAD calls.
- For JSON APIs, keep
Content-Type: application/jsonand valid JSON in the body.
