Turn your manual testers into automation experts! Request a DemoStart testRigor Free

How to use cURL to testRigor API call converter

In this guide, we’ll walk you through how to convert cURL to testRigor API call commands with our Converter.

  1. Follow the link to the converter above
  2. Add your cURL in the text area at the top of the page
  3. Click “Convert”

This will translate your cURL and display the corresponding testRigor API call command under Result.

Sample input:
curl -d '{"key1":"value1", "key2":"value2"}' -H "Content-Type: application/json" -X POST http://localhost:3000/data
Sample output:
call api POST "http://localhost" with header "Content-Type:application/json" and body text starting from the next line and ending with [END]
{
  "key1": "value1",
  "key2": "value2"
}
[END]
Related Articles

How to do database testing using testRigor?

Database testing is crucial because it ensures the integrity and reliability of your application’s data. It verifies the ...

How to perform keyboard actions using testRigor?

Smart test automation tools like testRigor account for various ways for testers to interact with the system. You can copy and ...

How to test legacy systems?

Understanding legacy systems Imagine a vintage car that’s been in the family for generations. It’s a ...