Skip to main content

Option Delivery Price

Get the delivery price for option

HTTP Request

GET /derivatives/v3/public/delivery-price

Request Parameters

ParameterRequiredTypeComments
categoryfalsestringProduct type. For option only
symbolfalsestringSymbol name
baseCoinfalsestringBase coin. Default: BTC
directionfalsestringPage direction. prev, next. Default: next
limitfalseintegerLimit for data size per page. [1, 200]. Default: 50
cursorfalsestringCursor. Use the nextPageCursor token from the response to retrieve the next page of the result set

Response Parameters

ParameterTypeComments
resultTotalSizeintegerThe number of records in dataList
cursorstringCursor. Used to pagination
dataListarrayObject
> categorystringProducts category
> symbolstringSymbol name
> deliveryPricestringDelivery price
> deliveryTimestringDelivery timestamp(ms)

Request Example

GET /derivatives/v3/public/delivery-price?limit=1&baseCoin=ETH HTTP/1.1
Host: api.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "success",
"result": {
"resultTotalSize": 4830,
"cursor": "0%2C1",
"dataList": [
{
"category": "option",
"symbol": "ETH-25DEC22-1450-C",
"deliveryPrice": "1218.856238890",
"deliveryTime": "1671955200000"
}
]
},
"retExtInfo": {},
"time": 1671971138308
}