Skip to main content

Get Delivery Price

Get the delivery price.

Covers: USDC futures / Inverse futures / Option

info
  • Option: only returns those symbols are being "DELIVERING" (UTC8~UTC12) when "symbol" is not specified;

HTTP Request

GET /v5/market/delivery-price

Request Parameters

ParameterRequiredTypeComments
categorytruestringProduct type. linear, inverse, option
symbolfalsestringSymbol name
baseCoinfalsestringBase coin. Default: BTC. valid for option only
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
categorystringProduct type
listarrayObject
> symbolstringSymbol name
> deliveryPricestringDelivery price
> deliveryTimestringDelivery timestamp (ms)
nextPageCursorstringRefer to the cursor request parameter

Request Example

GET /v5/market/delivery-price?category=option&symbol=ETH-26DEC22-1400-C HTTP/1.1
Host: api-testnet.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "success",
"result": {
"category": "option",
"nextPageCursor": "",
"list": [
{
"symbol": "ETH-26DEC22-1400-C",
"deliveryPrice": "1220.728594450",
"deliveryTime": "1672041600000"
}
]
},
"retExtInfo": {},
"time": 1672055336993
}