Merhaba, api ile honeypot.is sitesinden veri çekmeye çalışıyorum ancak Hata: Failed to fetch

böyle bir hata alıyorum..

kodları aşağıya bıraktım, şimdiden teşekkürler.

<!DOCTYPE html>
<html>
<head>
<title>Honeypot API Sonuçları</title>
</head>
<body>
<h1>Honeypot API Sonuçları</h1>
<button id="callApiButton">API Çağrısı Yap</button>
<div id="result"></div>

<script>
document.getElementById("callApiButton").addEventL istener("click", function() {
var apiKey = "{APIKEY}";
var address = "0x3D5BB18780d07C6E2DF9A21e56C45096127eB5d9"; // Adresi güncelleyin
var apiUrl = "https://api.honeypot.is/v2/IsHoneypot?address=" + encodeURIComponent(address);

fetch(apiUrl, {
method: "GET",
headers: {
"X-API-KEY": apiKey
}
})
.then(response => response.json())
.then(data => {
var resultDiv = document.getElementById("result");
resultDiv.innerHTML = "Sonuç: " + JSON.stringify(data, null, 2);
})
.catch(error => {
var resultDiv = document.getElementById("result");
resultDiv.innerHTML = "Hata: " + error.message;
console.error("API çağrısı sırasında hata oluştu:", error);
});
});

</script>
</body>
</html>