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 Install Client Certificates in testRigor

Client certificates are one of several ways to allow users to authenticate their identity to a server, most often a private ...

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 ...