交易对
请求
类别
说明
方法
GET
地址
/api/v1/pairs
签权
无需签权
限流
每秒10次
响应
字段名称
数据类型
说明
pairName
string
交易对
baseCoin
string
基础币种
quoteCoin
string
报价币种
priceDecimalPlace
int
价格小数位数
qtyDecimalPlace
int
数量小数位数
minOrderAmount
decimal
最小下单额
maxOrderAmount
decimal
最大下单额
state
int
交易对状态。
1 - 允许交易
2 - 暂停交易
{
"data": [
{
"baseCoin": "EOS",
"quoteCoin": "BTC",
"pairName": "EOS_BTC",
"priceDecimalPlace": 8,
"qtyDecimalPlace": 4,
"minOrderAmount": 0.0100,
"maxOrderAmount": 100000.0000,
"state": 1
},
{
"baseCoin": "BTC",
"quoteCoin": "USDT",
"pairName": "BTC_USDT",
"priceDecimalPlace": 8,
"qtyDecimalPlace": 4,
"minOrderAmount": 0.0100,
"maxOrderAmount": 100000.0000,
"state": 1
},
{
"baseCoin": "ETH",
"quoteCoin": "USDT",
"pairName": "ETH_USDT",
"priceDecimalPlace": 8,
"qtyDecimalPlace": 4,
"minOrderAmount": 0.0100,
"maxOrderAmount": 100000.0000,
"state": 1
},
{
"baseCoin": "EOS",
"quoteCoin": "ETH",
"pairName": "EOS_ETH",
"priceDecimalPlace": 8,
"qtyDecimalPlace": 4,
"minOrderAmount": 0.0100,
"maxOrderAmount": 100000.0000,
"state": 1
},
{
"baseCoin": "ETH",
"quoteCoin": "BTC",
"pairName": "ETH_BTC",
"priceDecimalPlace": 8,
"qtyDecimalPlace": 4,
"minOrderAmount": 0.0100,
"maxOrderAmount": 100000.0000,
"state": 1
}
],
"code": 0,
"message": "Success"
}Last updated