我正在进行一个与加密货币交易相关的项目,需要选择一个市场对的Binance Exchange,并基于货币对的选择,我必须显示各种结果,例如当前价格,24小时价格变动,24小时交易量和最近10个交易历史该市场对。我遍历了Binance Rest API文档:https://github.com/binance-exchange/binance-official-api-docs/blob/master/rest-api.md,但是找不到可以帮助我检索市场对列表的端点。
我不知道任何文档吗?
谢谢。
最佳答案
您正在寻找/exchangeInfo
公共(public)端点。
在https://github.com/binance-exchange/binance-official-api-docs/blob/master/rest-api.md上查看更多信息:
交流信息GET /api/v1/exchangeInfo
当前交易所交易规则和代码信息
所有硬币对的结果symbols
数组:
...
"symbols": [{
"symbol": "ETHBTC",
"status": "TRADING",
"baseAsset": "ETH",
"baseAssetPrecision": 8,
"quoteAsset": "BTC",
"quotePrecision": 8,
"orderTypes": [
// These are defined in the `ENUM definitions` section under `Order types (orderTypes)`.
// All orderTypes are optional.
],
"icebergAllowed": false,
"filters": [
// There are defined in the `Filters` section.
// All filters are optional.
]
}]
...
关于javascript - 如何使用Binance API检索所有市场对的列表,如ETH/BTC?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55549499/