Finally it is working:
using HTTP
const URL = "https://sandbox-api.coinmarketcap.com/v1/cryptocurrency/listings/latest"
function make_API_call(url)
try
response = HTTP.get(url, ["Accepts" => "application/json", "X-CMC_PRO_API_KEY" => "b54bcf4d-1bca-4e8e-9a24-22ff2c3d462c"], "{'start': '1', 'limit': '5000', 'convert': 'USD'}")
return String(response.body)
catch e
return "Error occurred : $e"
end
end
response = make_API_call(URL)
println(response)