Skip to main content

Get Instruments Info

Query for the instrument specification of spread combinations.

HTTP Request

GET /v5/spread/instrument

Request Parameters

ParameterRequiredTypeComments
symbolfalsestringSpread combination symbol name
baseCoinfalsestringBase coin, uppercase only
limitfalseintegerLimit for data size per page. [1, 500]. Default: 200
cursorfalsestringCursor. Use the nextPageCursor token from the response to retrieve the next page of the result set

Response Parameters

ParameterTypeComments
listarray<object>instrument info
> symbolstringSpread combination symbol name
> contractTypestringProduct type
  • FundingRateArb: perpetual & spot combination
  • CarryTrade: futures & spot combination
  • FutureSpread: different expiry futures combination
  • PerpBasis: futures & perpetual
> statusstringSpread status. Trading, Settling
> baseCoinstringBase coin
> quoteCoinstringQuote coin
> settleCoinstringSettle coin
> tickSizestringThe step to increase/reduce order price
> minPricestringMin. order price
> maxPricestringMax. order price
> lotSizestringOrder qty precision
> minSizestringMin. order qty
> maxSizestringMax. order qty
> launchTimestringLaunch timestamp (ms)
> deliveryTimestringDelivery timestamp (ms)
> legsarray<object>Legs information
>> symbolstringLegs symbol name
>> contractTypestringLegs contract type. LinearPerpetual, LinearFutures, Spot
nextPageCursorstringRefer to the cursor request parameter

Request Example

GET /v5/spread/instrument?limit=1 HTTP/1.1
Host: api-testnet.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": {
"list": [
{
"symbol": "SOLUSDT_SOL/USDT",
"contractType": "FundingRateArb",
"status": "Trading",
"baseCoin": "SOL",
"quoteCoin": "USDT",
"settleCoin": "USDT",
"tickSize": "0.0001",
"minPrice": "-1999.9998",
"maxPrice": "1999.9998",
"lotSize": "0.1",
"minSize": "0.1",
"maxSize": "50000",
"launchTime": "1743675300000",
"deliveryTime": "0",
"legs": [
{
"symbol": "SOLUSDT",
"contractType": "LinearPerpetual"
},
{
"symbol": "SOLUSDT",
"contractType": "Spot"
}
]
}
],
"nextPageCursor": "first%3D100008%26last%3D100008"
},
"retExtInfo": {},
"time": 1744076802479
}