Value

我可以從哪裡將實時加密貨幣市場價值導入我的網頁?

  • February 15, 2018

我打算建立一個網頁,使用者可以在其中輸入他/她的各種加密貨幣的股票,並且該網頁應顯示他/她選擇的每種加密貨幣的目前市場價值(以美元計)。

我想知道我可以從哪裡(哪個網站/數據庫)導入加密貨幣的實時市場價值,所以我可以在我的網站腳本中使用這些值?

非常感謝您提前。

您可以直接從交易所市場 API 導入。

例子

$url = "https://api.bitfinex.com/v1/ticker/btcusd";
$json = json_decode(file_get_contents($url), true);
$price = $json["last_price"];
echo $price;

Javascript xml

var xbtc = new XMLHttpRequest();
       xbtc.open('GET',         'https://api.bitcoinaverage.com/ticker/global/USD/', true);
       xbtc.onreadystatechange = function(){
       if(xbtc.readyState == 4){
           var ticker = JSON.parse(xbtc.responseText);
           var price = ticker.last;
       document.getElementById('MyDiv').innerHTML = "$" + price;
       }
       };
       xbtc.send();

<http://btcthreads.com/display-the-exchange-rate-on-your-website/>

引用自:https://bitcoin.stackexchange.com/questions/49576