Instrument Info
Get the spec of symbol information
HTTP Request
GET /spot/v3/public/symbols
Request Parameters
None
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| list | array | Object |
| > name | string | Name of the trading pair |
| > alias | string | Alias |
| > baseCoin | string | Base currency |
| > quoteCoin | string | Quote currency |
| > basePrecision | string | Decimal precision (base currency) |
| > quotePrecision | string | Decimal precision (quote currency) |
| > minTradeQty | string | Min. order qty (Not valid for market buy orders) |
| > minTradeAmt | string | Min. order value (Only valid for market buy orders) |
| > minPricePrecision | string | Min. number of decimal places |
| > maxTradeQty | string | Max. order qty (It is ignored when you place an order with order type LIMIT_MAKER) |
| > maxTradeAmt | string | Max. order value (It is ignored when you place an order with order type LIMIT_MAKER) |
| > category | string | Category |
| > innovation | string | 1 indicates that the price of this currency is relatively volatile |
| > showStatus | string | 1 indicates that the symbol open for trading |
Request Example
curl --location --request GET 'https://api-testnet.bybit.com/spot/v3/public/symbols'
Response Example
{
"retCode": 0,
"retMsg": "OK",
"result": {
"list": [
{
"name": "BTCUSDT",
"alias": "BTCUSDT",
"baseCoin": "BTC",
"quoteCoin": "USDT",
"basePrecision": "0.000001",
"quotePrecision": "0.00000001",
"minTradeQty": "0.000001",
"minTradeAmt": "10",
"maxTradeQty": "63.01197227",
"maxTradeAmt": "1000000",
"minPricePrecision": "0.01",
"category": "1",
"showStatus": "1",
"innovation": "0"
},
{
"name": "ETHUSDT",
"alias": "ETHUSDT",
"baseCoin": "ETH",
"quoteCoin": "USDT",
"basePrecision": "0.00001",
"quotePrecision": "0.0000001",
"minTradeQty": "0.00224",
"minTradeAmt": "10",
"maxTradeQty": "100000000",
"maxTradeAmt": "100000000",
"minPricePrecision": "0.01",
"category": "1",
"showStatus": "1",
"innovation": "0"
}
]
},
"retExtMap": {},
"retExtInfo": {},
"time": 1659067662931
}