API - 使用我的 Api 将比特币金额转换为美元

Afterapiv2.bitcoinaverage.com不再免费,我需要其他解决方案。


我想x BTC Amount从当前汇率转换成美元。


我的旧代码:


$getrate = "https://apiv2.bitcoinaverage.com/convert/global?from=BTC&to=USD&amount=0.005";

$btcprice = array(

  'price' =>

    array(

    'method'  => 'GET',

    )

);

$priceone = stream_context_create($btcprice);

$pricetwo = file_get_contents($getrate, false, $priceone);

$result = json_decode($pricetwo, true);

我可以对来自https://alternative.me/crypto/api/的 api 做同样的事情吗?


非常感谢


明月笑刀无情
浏览 142回答 1
1回答

湖上湖

根据文档,您可以执行以下操作:<?php$getrate = "https://api.alternative.me/v2/ticker/?convert=USD";$price = file_get_contents($getrate);$result = json_decode($price, true);// BTC in USD$result = $result['data'][1]['quotes']['USD']['price'];$quantity = 0.005;$value = $quantity * $result;echo 'value : ' . $value;注意(谢谢@AndreasHassing):如果您只想要 json 响应中的比特币数据,请使用:$getrate = "https://api.alternative.me/v2/ticker/bitcoin/?convert=USD";
打开App,查看更多内容
随时随地看视频慕课网APP