Build, send, and inspect HTTP requests. Generate cURL commands instantly β works like Postman, runs in your browser.
npx http-server locally,
or test against APIs that explicitly allow browser requests (most public REST APIs do).
The generated cURL command always works from your terminal regardless of CORS.
This tool is a visual HTTP client and cURL command generator that works entirely in your browser. Select your HTTP method, enter the endpoint URL, configure query parameters, headers, authentication, and a request body β then either fire the request live or copy the generated cURL command to run in your terminal.
Your API keys, tokens, and request data are never sent to Convsta servers β they travel only to the URL you specify. The tool is a lightweight alternative to Postman or Insomnia for quick API testing without installing anything.
CORS (Cross-Origin Resource Sharing) is enforced by browsers, not by the server responding to your request. If the server does not return an Access-Control-Allow-Origin header, the browser blocks the response. The generated cURL command at the bottom is not subject to CORS and will always work from your terminal.
Select POST from the method dropdown, click the "Body" tab in the Request panel, choose "JSON" from the body type buttons, and paste your JSON payload. The tool automatically sets the Content-Type: application/json header when you send or generate cURL.
Yes. Windows Command Prompt requires double quotes instead of single quotes and does not support the backslash line-continuation character. The "Windows CMD" button generates a single-line version of the command with double quotes, ready to paste into CMD or PowerShell.