Ticker Info
Get all latest information of symbols.
HTTP Request
GET /derivatives/v3/public/tickers
Request Parameters
| Parameter | Required | Type | Comments |
|---|---|---|---|
| category | false | string | Product type. linear,inverse,option. Default: linear, but in the response category shows "" |
| symbol | false | string | Symbol name.
|
Response Parameters
- linear/inverse
- option
| Parameter | Type | Comments |
|---|---|---|
| category | string | Derivatives products category. Keeps empty string `""` when `category` is not passed |
| list | array | Object |
| > symbol | string | Symbol name |
| > bidPrice | string | Best bid price |
| > askPrice | string | Best ask price |
| > lastPrice | string | Last transaction price |
| > lastTickDirection | string | Direction of price change |
| > prevPrice24h | string | Price of 24 hours ago |
| > price24hPcnt | string | Percentage change of market price relative to 24h |
| > highPrice24h | string | The highest price in the last 24 hours |
| > lowPrice24h | string | Lowest price in the last 24 hours |
| > prevPrice1h | string | Hourly market price an hour ago |
| > markPrice | string | Mark price |
| > indexPrice | string | Index price |
| > openInterest | string | Open interest |
| > turnover24h | string | Turnover in the last 24 hours |
| > volume24h | string | Trading volume in the last 24 hours |
| > fundingRate | string | Funding rate |
| > nextFundingTime | string | Next timestamp for funding to settle |
| > predictedDeliveryPrice | string | Predicted delivery price. It has value when 30 min before delivery |
| > basisRate | string | Basis rate for futures |
| > deliveryFeeRate | string | Delivery fee rate |
| > deliveryTime | string | Delivery timestamp (ms) |
| > openInterestValue | string | Open interest value |
| Parameter | Type | Comments |
|---|---|---|
| category | string | Derivatives products category |
| symbol | string | Symbol name |
| bidPrice | string | Best bid price |
| bidSize | string | Best ask price |
| bidIv | string | Implied volatility for best bid |
| askPrice | string | Best ask price |
| askSize | string | Ask quantity |
| askIv | string | Implied volatility for best ask |
| lastPrice | string | Last transaction price |
| highPrice24h | string | The highest price in the last 24 hours |
| lowPrice24h | string | Lowest price in the last 24 hours |
| markPrice | string | Mark price |
| indexPrice | string | Index price |
| markPriceIv | string | Implied volatility for mark price |
| underlyingPrice | string | Underlying price |
| openInterest | string | Open interest |
| turnover24h | string | Turnover in the last 24 hours |
| volume24h | string | Trading volume in the last 24 hours |
| totalVolume | string | Total volume |
| totalTurnover | string | Total turnover |
| delta | string | delta |
| gamma | string | gamma |
| vega | string | vega |
| theta | string | theta |
| predictedDeliveryPrice | string | Predicted delivery price. It has value when 30 min before delivery |
| change24h | string | The change in the last 24 hours |
Request Example
- inverse
- option
GET /derivatives/v3/public/tickers?category=linear&symbol=BTCUSDZ22 HTTP/1.1
Host: api.bybit.com
GET /derivatives/v3/public/tickers?category=option&symbol=BTC-30DEC22-19000-C HTTP/1.1
Host: api.bybit.com
Response Example
- inverse
- option
{
"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
}
{
"retCode": 0,
"retMsg": "SUCCESS",
"result": {
"category": "option",
"symbol": "BTC-30DEC22-19000-C",
"bidPrice": "5",
"bidSize": "0.49",
"bidIv": "0.4875",
"askPrice": "20",
"askSize": "12.69",
"askIv": "0.6091",
"lastPrice": "20",
"highPrice24h": "20",
"lowPrice24h": "5",
"markPrice": "7.60392245",
"indexPrice": "16825.77",
"markPriceIv": "0.5179",
"underlyingPrice": "16800.92",
"openInterest": "347.52",
"turnover24h": "336.1553",
"volume24h": "0.02",
"totalVolume": "2148",
"totalTurnover": "29041290",
"delta": "0.02097273",
"gamma": "0.00005034",
"vega": "0.97458031",
"theta": "-5.22080293",
"predictedDeliveryPrice": "0",
"change24h": "1"
},
"retExtInfo": {},
"time": 1671969555910
}