查询支持的交易对
请求
GET https://custody-example-url/custody/v1/api/integrated/trading-pairs
参数
无
响应
字段 |
类型 |
描述 |
base_coin |
String |
base 币种,如 BTCUSDT 交易对中 base 币种是 BTC |
quote_coin |
String |
quote 币种,如 BTCUSDT 交易对中 quote 币种是 USDT |
base_precision |
Integer |
base 币种精度 |
quote_precision |
Integer |
quote 币种精度 |
min_base |
Integer |
base 币种最小交易额 |
min_quote |
Integer |
quote 币种最小交易额 |
max_base |
Integer |
base 币种最大交易额 |
max_quote |
Integer |
quote 币种最大交易额 |
support_limit |
Integer |
是否支持限价单(1-支持,0-不支持) |
响应示例
{
"code": 0,
"data": [
{
"base_coin": "string",
"base_precision": 0,
"max_base": 0,
"max_quote": 0,
"min_base": 0,
"min_quote": 0,
"quote_coin": "string",
"quote_precision": 0,
"support_limit": 0
}
],
"message": "string",
"successful": true
}