Skip to content

Query Symbol Precision

Endpoint: /v1/futures/symbol_precision

Request Parameters

Required

Method: GET

Example

Text Only
curl -d /v1/futures/symbol_precision

Query Parameters

Parameter Required Type Example Description
symbol No string BTC-USDT Trading pair. If omitted, precision data for all trading pairs will be returned

Response Parameters

Parameter Required Type Example Description
errno Yes int 0 Status code
errmsg Yes string success Status message
result Yes object See example Result data

Result Fields

Parameter Required Type Example Description
amount Yes string 2 Quantity precision
price Yes string 2 Price precision
minQuantity Yes string 0.01 Minimum order quantity
maxQuantity Yes string 100000000 Maximum order quantity
minPrice Yes string 0.01 Minimum order price
maxPrice Yes string 100000000 Maximum order price

Response Example

JSON
{
    "errno": 0,
    "errmsg": "success",
    "result": {
        "ETH-USDT": {
            "amount": "3",
            "minQuantity": "0.01",
            "maxQuantity": "10000",
            "price": "4",
            "minPrice": "100",
            "maxPrice": "5000"
        },
        "EOS-USDT": {
            "amount": "2",
            "minQuantity": "10",
            "maxQuantity": "100000000",
            "price": "2",
            "minPrice": "0.5",
            "maxPrice": "50"
        },
        "BTC-USDT": {
            "amount": "2",
            "minQuantity": "0.000001",
            "maxQuantity": "10000",
            "price": "2",
            "minPrice": "0.000001",
            "maxPrice": "100000"
        }
    }
}