2018-05-03

获取所有交易对行情及配置

GET https://bitrabbit.com/api/v2/markets

[
    {
        "id":4,
        "name":"ETH/BTC",
        "ticker":{
            "low":"0.07178654",
            "high":"0.07857151",
            "last":"0.07770923",
            "open":"0.07441502",
            "volume":"60.14959027",
            "turnover":"4.54854660223180525",
            "sell":"0.077715",
            "buy":"0.077709",
            "at":1525341201,
            "last_usdt":"714.353774622789326",
            "last_cny":"4500.4287801235727538"
        },
        "ask_config":{
            "fee_rate":"0.001",
            "price_minmov":"0.000001",
            "min_amount":"0.001"
        },
        "bid_config":{
            "fee_rate":"0.001",
            "price_minmov":"0.000001",
            "min_amount":"0.001"
        }
    }
]

ticker代表数据:

字段 含义
low 24h最低价
high 24h最高价
last 最新价
open 24h开盘价
volume 24h交易量
turnover 24h交易额
sell 卖一
buy 买一
at 时间戳
last_usdt 最新价转美元
last_cny 最新价人民币

config字段代表交易对设置,可以只使用ask_config

字段 含义
fee_rate 手续费
price_minmov 可成交最小价格
min_amount 可成交最小数量

你可能感兴趣的:(2018-05-03)