Api
是否可以使用 api 獲取 bitcoin.de 的程式碼?
我沒有在網站上找到任何東西。他們有api嗎?它適用於我的 Android 應用比特幣偏執狂。
你可以只解析網站。例如獲取目前的歐元和美元價格:
curl -s https://www.bitcoin.de/de | sed -n '/EUR/s%.*[^0-9]\([0-9]\+\)\(,\)\([0-9]\+\).*%\1.\3%p' curl -s https://www.bitcoin.de/de | sed -n '/USD/s%.*[^0-9]\([0-9]\+\)\(,\)\([0-9]\+\).*%\1.\3%p'
他們現在確實有一個API。要獲取最近的交易,您可以使用
showPublicTradeHistory
API 端點:https://api.bitcoin.de/v1/trades/history
.