Skip to main content

Instrument Info

Get the spec of trading symbols

tip

This is public endpoint, so it does not need authentication

HTTP Request

GET /contract/v3/public/copytrading/symbol/list

Request Parameters

None

Response Parameters

ParameterTypeComments
listarrayObject
> symbolstringsymbol
> baseCurrencystringBase currency
> quoteCurrencystringQuote currency
> priceScalestringPrice scale (the number of decimal places to which a price can be submitted, although the final price may be rounded to conform to the tick_size)
> takerFeestringTaker fee
> makerFeestringMaker fee
> fundingIntervalstringFunding fee interval
> leverageFilterObjectLeverage attributes
>> maxLeveragestringMax leverage (indicates the max leverage, assuming the lowest risk limit setting)
>> minLeveragestringMin leverage
> priceFilterObjectPrice attributes
>> minPricestringMin price
>> maxPricestringMax price
>> tickSizestringTick size
> lotSizeFilterObjectOrder attributes
>> qtyStepstringQty step
>> maxOrderQtystringMax trading quantity
>> minOrderQtystringMin trading quantity

Request Example

curl https://api-testnet.bybit.com/contract/v3/public/copytrading/symbol/list

Response Example

{
"retCode": 0,
"retMsg": "success",
"result": {
"list": [
{
"symbol": "BTCUSDT",
"baseCurrency": "BTC",
"quoteCurrency": "USDT",
"priceScale": "1",
"takerFee": "0.00075",
"makerFee": "-0.00025",
"fundingInterval": "480",
"leverageFilter": {
"maxLeverage": "100",
"minLeverage": "1"
},
"priceFilter": {
"minPrice": "0.5",
"maxPrice": "999999.0",
"tickSize": "0.5"
},
"lotSizeFilter": {
"qtyStep": "0.001",
"maxOrderQty": "100.000",
"minOrderQty": "0.001"
}
}
]
}
}