@Celtic88 As the error message said, you were trying to send a plain HTTP request over an HTTPS port.  So you have two choices to correct the error, you can change the script to send an HTTP request over port 80 or a secure request over port 443.  Examples of the 2 options are below:   HTTP Request Global $hOpen = _WinHttpOpen() Global $hConnect = _WinHttpConnect($hOpen, "http://api.coinpaprika.com/") Global $hRequest = _WinHttpOpenRequest($hConnect, "GET"