Convert Curl Commands to CFML code Online

Curl command

Examples: GET - POST - JSON - Basic Auth - Files - Form

Curl to CFML Online

This tool helps you to generate CFML code based on Curl Command. Copy and Paste Curl Command and Generate CFML.

What can you do with Curl to CFML Converter Online?

  • Curl to CFML is very unique tool to convert curl command to http request of CFML. The input provide by the user's curl command to generate CFML Code.
  • This tool saves your time and helps to generate CFML code with ease.
  • Curl to CFML works well on Windows, MAC, Linux, Chrome, Firefox, Edge, and Safari.

what is Curl?

cURL is an open-source command line tool that downloads files from the web. It supports a variety of protocols, including HTTP, HTTPS, FTP, SFTP, TFTP, Gopher and others.

How do convert Curl to CFML code? 

Step1: Paste and convert your Curl requests to CFML code.
Step2: Copy CFML Code

Convert Curl to CFML Example

Curl
curl example.com
CFML Code
httpService = new http();
httpService.setUrl("http://example.com");
httpService.setMethod("GET");

result = httpService.send().getPrefix();
writeDump(result);