-
Notifications
You must be signed in to change notification settings - Fork 0
Symbol Information
huyaohua edited this page Jan 19, 2020
·
1 revision
Interface address:https://api.bitforex.com/api/v1/market/symbols
Request method:GET
Parameters None
Example
# 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
}
]
}
Return value description
Parameter Name | Type | Description |
---|---|---|
symbol | String | Transaction pair type |
pricePrecision | int | Price accuracy (several decimal places) |
amountPrecision | int | Quantity accuracy (several decimal places)) |
minOrderAmount | double | Minimum order quantity |