cURL Generator
This tool is connected to the internal API and ready to use.
Result
cURL Generator
cURL generator
What is cURL?
cURL is a command-line program for transferring data over HTTP and other protocols. It is commonly used to test websites and APIs.
What is this generator used for?
- Create GET, POST and other HTTP requests as terminal commands
- Add headers and JSON data to a cURL command
- Reproduce a browser request outside the browser
Examples
“Use example” fills the matching fields. Then run the tool action.
Simple GET test
Retrieves a public JSON post.
curl -X GET https://jsonplaceholder.typicode.com/posts/1GET with a custom header
Sends an additional PLUS23 test header.
curl -X GET https://httpbin.org/headers -H "X-PLUS23-Test: active"POST with JSON
Sends a JSON test body to HTTPBin.
curl -X POST https://httpbin.org/post -H "Content-Type: application/json" --data ...Result
The tool creates a complete cURL command. It does not send the request. Copy the command and run it in a terminal.
Security
Use test values only. Do not place real credentials or access tokens in publicly visible commands.