Convert CURL commands to Har code online

Curl command

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

CURL to Har Online

This tool helps you to generate Har code based on CURL Command. Copy and Paste CURL Command and Generate Har.

What can you do with CURL to Har Converter Online?

  • CURL to Har is very unique tool to convert cURL command to http request of Har. The input provide by the user's cURL command to generate Har Code.
  • This tool saves your time and helps to generate Har code with ease.
  • CURL to Har 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 Har code? 

Step1: Paste and convert your CURL requests to Har code

Step2: Copy Har code

Convert CURL to Har example

CURL
curl example.com
Har Code
{
    "log": {
        "version": "1.2",
        "entries": [
            {
                "request": {
                    "method": "GET",
                    "url": "http://example.com",
                    "httpVersion": "HTTP/1.1",
                    "cookies": [],
                    "headers": [],
                    "queryString": [],
                    "headersSize": -1,
                    "bodySize": -1
                }
            }
        ]
    }
}