gpt4 book ai didi

javascript - 如何使用 Binance API 检索所有市场对(例如 ETH/BTC)的列表?

转载 作者:行者123 更新时间:2023-12-03 13:35:18 27 4
gpt4 key购买 nike

我正在开发一个与加密货币交易相关的项目,我需要选择币安交易所的一个市场对,并且根据对的选择,我必须显示各种结果,例如当前价格、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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com