-
Notifications
You must be signed in to change notification settings - Fork 6
Symbol信息
BitForex-API edited this page Jul 31, 2018
·
9 revisions
请求格式:GET
参数 无
示例
# request
GET https://api.bitforex.com/api/v1/market/symbols
# Response
{
"success": true,
"data": [
{
"symbol": "coin-usdt-btc",
"pricePrecision": 2,
"amountPrecision": 4,
"minOrderAmount":0.002
},
{
"symbol": "coin-usdt-eth",
"pricePrecision": 2,
"amountPrecision": 4,
"minOrderAmount":0.02
}
]
}
返回值说明
参数名 | 类型 | 描述 |
---|---|---|
symbol | String | 交易对类型 |
pricePrecision | int | 价格精度(小数点后几位) |
amountPrecision | int | 数量精度(小数点后几位) |
minOrderAmount | double | 最小下单量 |