Skip to main content

Ticker Info

Get all latest information of symbols.

HTTP Request

GET /derivatives/v3/public/tickers

Request Parameters

ParameterRequiredTypeComments
categoryfalsestringProduct type. linear,inverse,option. Default: linear, but in the response category shows ""
symbolfalsestringSymbol name.
  • category=option, symbol is required
  • an option symbol, category is required

Response Parameters

ParameterTypeComments
categorystringDerivatives products category. Keeps empty string `""` when `category` is not passed
listarrayObject
> symbolstringSymbol name
> bidPricestringBest bid price
> askPricestringBest ask price
> lastPricestringLast transaction price
> lastTickDirectionstringDirection of price change
> prevPrice24hstringPrice of 24 hours ago
> price24hPcntstringPercentage change of market price relative to 24h
> highPrice24hstringThe highest price in the last 24 hours
> lowPrice24hstringLowest price in the last 24 hours
> prevPrice1hstringHourly market price an hour ago
> markPricestringMark price
> indexPricestringIndex price
> openIntereststringOpen interest
> turnover24hstringTurnover in the last 24 hours
> volume24hstringTrading volume in the last 24 hours
> fundingRatestringFunding rate
> nextFundingTimestringNext timestamp for funding to settle
> predictedDeliveryPricestringPredicted delivery price. It has value when 30 min before delivery
> basisRatestringBasis rate for futures
> deliveryFeeRatestringDelivery fee rate
> deliveryTimestringDelivery timestamp (ms)
> openInterestValuestringOpen interest value

Request Example

GET /derivatives/v3/public/tickers?category=linear&symbol=BTCUSDZ22 HTTP/1.1
Host: api.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": {
"category": "inverse",
"list": [
{
"symbol": "BTCUSDZ22",
"bidPrice": "16825",
"askPrice": "16825.5",
"lastPrice": "16825.00",
"lastTickDirection": "ZeroPlusTick",
"prevPrice24h": "16830.50",
"price24hPcnt": "-0.000326",
"highPrice24h": "16859.50",
"lowPrice24h": "16798.50",
"prevPrice1h": "16824.50",
"markPrice": "16824.02",
"indexPrice": "16825.28",
"openInterest": "7653441",
"turnover24h": "30.80109312",
"volume24h": "518542",
"fundingRate": "",
"nextFundingTime": "0",
"predictedDeliveryPrice": "0.00",
"basisRate": "-0.00009093",
"deliveryFeeRate": "0.0005",
"deliveryTime": "1672387200000",
"openInterestValue": "21887.06"
}
]
},
"retExtInfo": {},
"time": 1671969377669
}