Development

BTC-E 是否有用於替代貨幣的 API?

  • February 21, 2012

BTC-E 似乎在<https://btc-e.com/api/1/ticker>上提供了一個 API,但這僅列出了 BTC/USD 對數據。他們還提供與 Ixcoin 和 Tenebrix 等替代貨幣的 BTC 對。我已經嘗試了明顯的東西,例如https://btc-e.com/api/ 2 /ticker但沒有骰子。

我也會從任何其他多幣種交易所獲取 API,實際上我只需要一種從程式碼中輕鬆獲取價格的方法,而無需抓取 HTML 並處理正則表達式。

其他貨幣的 api 的 URL 是:

  1. <https://btc-e.com/api/2/1/ticker> - 比特幣/美元
  2. <https://btc-e.com/api/2/2/ticker> - IXC / BTC
  3. <https://btc-e.com/api/2/4/ticker> - I0C / BTC
  4. <https://btc-e.com/api/2/5/ticker> - SC/BTC
  5. <https://btc-e.com/api/2/6/ticker> - SC/USD
  6. <https://btc-e.com/api/2/7/ticker> - GG/BTC
  7. <https://btc-e.com/api/2/8/ticker> - TBX / BTC
  8. <https://btc-e.com/api/2/9/ticker> - FBX/BTC
  9. <https://btc-e.com/api/2/10/ticker> - LTC/BTC
  10. <https://btc-e.com/api/2/11/ticker> - RUC/BTC
  11. <https://btc-e.com/api/2/12/ticker> - RUC/USD
  12. <https://btc-e.com/api/2/13/ticker> - NMC/BTC
  13. <https://btc-e.com/api/2/14/ticker> - LTC/USD
  14. <https://btc-e.com/api/2/15/ticker> - CLC / BTC
  15. <https://btc-e.com/api/2/16/ticker> - DVC/BTC

在下面的連結中,將 1 更改為 1-16 之間的任意數字以匹配上述類別。

交易 API:https ://btc-e.com/api/1/trades

深度 API:https ://btc-e.com/api/2/1/depth

股票程式碼 Api:https ://btc-e.com/api/2/1/ticker

作者:dodoking

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