Skip to main content

Get Spread Tickers

Query for the latest price snapshot, best bid/ask price, and trading volume of different spread combinations in the last 24 hours.

HTTP Request

GET /v5/spread/tickers

Request Parameters

ParameterRequiredTypeComments
symboltruestringSpread combination symbol name

Response Parameters

ParameterTypeComments
listarray<object>Ticker info
> symbolstringSpread combination symbol name
> bidPricestringBid 1 price
> bidSizestringBid 1 size
> askPricestringAsk 1 price
> askSizestringAsk 1 size
> lastPricestringLast trade price
> highPrice24hstringThe highest price in the last 24 hours
> lowPrice24hstringThe lowest price in the last 24 hours
> prevPrice24hstringPrice 24 hours ago
> volume24hstringVolume for 24h

Request Example

GET /v5/spread/tickers?symbol=SOLUSDT_SOL/USDT HTTP/1.1
Host: api-testnet.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "Success",
"result": {
"list": [
{
"symbol": "SOLUSDT_SOL/USDT",
"bidPrice": "",
"bidSize": "",
"askPrice": "",
"askSize": "",
"lastPrice": "19.444",
"highPrice24h": "23.8353",
"lowPrice24h": "0",
"prevPrice24h": "20",
"volume24h": "24694.9"
}
]
},
"retExtInfo": {},
"time": 1744079413254
}