Skip to content

Get All Of The Trading Pair Information And Accuracy

Description

Get all of the trading pair Information and accuracy which system support

HTTP Request

GET /open/api/common/symbols

Request Parameters

ParameterTypeRequiredDescription

Request Example

http
curl 'https://openapi.100ex.com/open/api/common/symbols'

Response Parameters

ParameterTypeDescription
>symbolStringcoin pair, example: btcusdt
>count_coinStringquote coin
>amount_precisionIntegeramount precision
>base_coinStringbase coin
>limit_volume_minStringthe minimum volume of limit order
>price_precisionIntegerprice precision

Response Example

json
{
    "code": "0",
    "msg": "suc",
    "data": [
        {
            "symbol": "btcusdt",
            "count_coin": "USDT",
            "amount_precision": 5,
            "base_coin": "BTC",
            "limit_volume_min": "0.00001",
            "price_precision": 2
        }
    ],
    "message": null,
    "traceId": null
}

Status Code

CodeDescription
0success
1system error